remove a couple of debugging lines in mon.c

This commit is contained in:
nhmall
2019-06-01 17:36:54 -04:00
parent 4eeebe5e20
commit 852995bbeb

View File

@@ -2648,12 +2648,8 @@ struct monst *mon;
for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
if (DEADMONSTER(mtmp))
continue;
if (mtmp->mx == 0 && mtmp->my == 0) {
/* DEBUG ONLY - PLEASE REMOVE LATER */
if ((mtmp->mstate & 0x7) == MON_DETACH)
pline("skipping m_detach() monster");
if (mtmp->mx == 0 && mtmp->my == 0)
continue;
}
if (mon_has_amulet(mtmp) || !ok_to_obliterate(mtmp))
continue;
if (mtmp->data->mlet == S_ELEMENTAL) {