| 3983 | } |
| 3984 | |
| 3985 | void |
| 3986 | deal_with_overcrowding(struct monst *mtmp) |
| 3987 | { |
| 3988 | if (In_endgame(&u.uz)) { |
| 3989 | debugpline1("overcrowding: elemental_clog on %s", m_monnam(mtmp)); |
| 3990 | elemental_clog(mtmp); |
| 3991 | } else { |
| 3992 | debugpline1("overcrowding: sending %s into limbo", m_monnam(mtmp)); |
| 3993 | m_into_limbo(mtmp); |
| 3994 | } |
| 3995 | } |
| 3996 | |
| 3997 | /* like mnexto() but requires destination to be directly accessible */ |
| 3998 | void |
no test coverage detected