From 5f9ff08c83bb6963cd0b2defffce1de634d6fef7 Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sun, 3 Aug 2003 19:59:34 +0000 Subject: [PATCH] fog cloud shouldn't pummel you with debris --- doc/fixes34.2 | 1 + src/mhitu.c | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/fixes34.2 b/doc/fixes34.2 index 8919cd27b..652181efe 100644 --- a/doc/fixes34.2 +++ b/doc/fixes34.2 @@ -119,6 +119,7 @@ travel while polymorphed into a grid bug should not move diagonally refine cmdassist handling for grid bugs when casting force bolt spell while engulfed go ahead and use the engulfers name in the hit message rather than "it" +a fog cloud shouldn't pummel you with debris Platform- and/or Interface-Specific Fixes diff --git a/src/mhitu.c b/src/mhitu.c index 8138ed5e3..e310614f3 100644 --- a/src/mhitu.c +++ b/src/mhitu.c @@ -1702,8 +1702,14 @@ gulpmu(mtmp, mattk) /* monster swallows you, or damage if u.uswallow */ } break; case AD_PHYS: - You("are pummeled with debris!"); - exercise(A_STR, FALSE); + if (mtmp->data == &mons[PM_FOG_CLOUD]) + You("are laden with moisture and can barely %s!", + !breathless(youmonst.data) ? "breathe" : + "stay conscious"); + else { + You("are pummeled with debris!"); + exercise(A_STR, FALSE); + } break; case AD_ACID: if (Acid_resistance) { -- 2.50.1