From 81884a92e08f74a8f789777c696272e18cded248 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 10 May 2023 18:43:32 +0300 Subject: [PATCH] Don't show error when monster in lava cannot tele away ... due to the level being full of monsters. --- src/mon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon.c b/src/mon.c index 46010b9ba..2e038d348 100644 --- a/src/mon.c +++ b/src/mon.c @@ -817,7 +817,7 @@ minliquid_core(struct monst* mtmp) if (!DEADMONSTER(mtmp)) { (void) fire_damage_chain(mtmp->minvent, FALSE, FALSE, mtmp->mx, mtmp->my); - (void) rloc(mtmp, RLOC_ERR|RLOC_NOMSG); + (void) rloc(mtmp, RLOC_MSG); return 0; } return 1;