diff --git a/src/cmd.c b/src/cmd.c index 2ff419d48..da40f94f4 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -1944,7 +1944,7 @@ wiz_smell(void) mptr = gy.youmonst.data; is_you = TRUE; } - } else if ((mtmp = m_at(cc.x, cc.y)) && canspotmon(mtmp)) { + } else if ((mtmp = m_at(cc.x, cc.y)) != (struct monst *) 0) { mptr = mtmp->data; } else { mptr = (struct permonst *) 0; @@ -1957,7 +1957,7 @@ wiz_smell(void) pline("%s to give off no smell.", is_you ? "You seem" : "That monster seems"); } else { - You("see no monster there."); + pline("That is not a monster."); } } while (TRUE); return ECMD_OK;