From: nhmall Date: Fri, 13 Mar 2015 11:33:32 +0000 (-0400) Subject: "swallowed whole" was preceded by "You bite into" X-Git-Tag: NetHack-3.6.0_RC01~606 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da83545660f955fa55230c431b48f5583e5de411;p=nethack "swallowed whole" was preceded by "You bite into" Another reported by ais523: The death message "swallowed %s whole" is preceded by "You bite into %s."; these contradict. --- diff --git a/doc/fixes35.0 b/doc/fixes35.0 index 3ac75e94e..614bbe57f 100644 --- a/doc/fixes35.0 +++ b/doc/fixes35.0 @@ -875,6 +875,8 @@ tse a menu to loot multiple containers do_look() in post-3.4.3 used glyph prior to setting it in pager.c charge for a boulder that fills a pit in shop abuse wisdom in keeping with Rider eating message +message inconsistency: death message "swallowed whole" was preceded + by "You bite into" Platform- and/or Interface-Specific Fixes diff --git a/src/uhitm.c b/src/uhitm.c index 21de567e5..80f38addf 100644 --- a/src/uhitm.c +++ b/src/uhitm.c @@ -1822,7 +1822,7 @@ register struct attack *mattk; const char *mname = pd->mname; if (!type_is_pname(pd)) mname = an(mname); - You("bite into %s.", mon_nam(mdef)); + You("englut %s.", mon_nam(mdef)); Sprintf(kbuf, "swallowing %s whole", mname); instapetrify(kbuf); } else {