drop monster into "limbo" - that is, migrate to the current level */
| 3831 | |
| 3832 | /* drop monster into "limbo" - that is, migrate to the current level */ |
| 3833 | void |
| 3834 | m_into_limbo(struct monst *mtmp) |
| 3835 | { |
| 3836 | xint16 target_lev = ledger_no(&u.uz), xyloc = MIGR_APPROX_XY; |
| 3837 | |
| 3838 | mtmp->mstate |= MON_LIMBO; |
| 3839 | migrate_mon(mtmp, target_lev, xyloc); |
| 3840 | } |
| 3841 | |
| 3842 | void |
| 3843 | migrate_mon( |
no test coverage detected