Describe engulf attack by animal as "swallowing"

Suggested by aosdict: instead of describing all gulp attacks as
"engulfing you", say "The <monster> swallows you whole" for purple worms
(or any other animal engulfer) to visibly differentiate between
engulfing and swallowing.
This commit is contained in:
Michael Meyer
2022-08-10 19:56:53 +03:00
committed by Pasi Kallinen
parent 9c9a8ff797
commit beb99c0e72
+3 -1
View File
@@ -1164,7 +1164,9 @@ gulpmu(struct monst *mtmp, struct attack *mattk)
buf); buf);
dismount_steed(DISMOUNT_ENGULFED); dismount_steed(DISMOUNT_ENGULFED);
} else { } 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(); stop_occupation();
reset_occupations(); /* behave as if you had moved */ reset_occupations(); /* behave as if you had moved */