From beb99c0e72100830d55744d73d6782f8bb30e58e Mon Sep 17 00:00:00 2001 From: Michael Meyer Date: Wed, 10 Aug 2022 09:09:02 -0400 Subject: [PATCH] Describe engulf attack by animal as "swallowing" Suggested by aosdict: instead of describing all gulp attacks as "engulfing you", say "The swallows you whole" for purple worms (or any other animal engulfer) to visibly differentiate between engulfing and swallowing. --- src/mhitu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mhitu.c b/src/mhitu.c index d7f3ced28..610948bf2 100644 --- a/src/mhitu.c +++ b/src/mhitu.c @@ -1164,7 +1164,9 @@ gulpmu(struct monst *mtmp, struct attack *mattk) buf); dismount_steed(DISMOUNT_ENGULFED); } else { - urgent_pline("%s engulfs you!", Monnam(mtmp)); + urgent_pline("%s %s!", Monnam(mtmp), + is_animal(mtmp->data) ? "swallows you whole" + : "engulfs you"); } stop_occupation(); reset_occupations(); /* behave as if you had moved */