From: PatR Date: Fri, 25 Dec 2015 23:33:56 +0000 (-0800) Subject: fix #4040:2 - message typo for pet mind flayer X-Git-Tag: NetHack-3.6.1_RC01~1115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d36c443a3f15e1e5059807b22086c27afd9988d;p=nethack fix #4040:2 - message typo for pet mind flayer Mentioned in a completely unrelated report (about energy drain for vortex attack): the message given if a tame mind flayer is killed by attempting to eat Medusa's brains had "then is passes" where "then it passes" was intended. --- diff --git a/doc/fixes36.1 b/doc/fixes36.1 index dec33ac71..c308855e5 100644 --- a/doc/fixes36.1 +++ b/doc/fixes36.1 @@ -5,7 +5,7 @@ General Fixes and Modified Features doc/*.6 man pages and corresponding doc/*.txt text copies were out of date data.base entry for "lava" had wrong first name for Don Woods' attribution cursed genocide of "none" sent in monsters, but "that's enough tries" didn't -update MAXPLAYERS documentation in sysconf file and allow 0 for it +update MAXPLAYERS documentation in sysconf file and accept 0 for 'no limit' wizard mode: don't include feedback about named fruit for ^X and enlightenment looking at distant objects while wearing the Eyes of the Overworld made their up-close descriptions known when not intended @@ -41,7 +41,6 @@ don't show the old level when you die going down the stairs because of an new high score with ", while helpless" attribute appended would erroneously result in ", while helpless" being appended to all scores allow bright aliases for colors in menucolors -make MAXPLAYERS option in sysconf accept 0 value avoid hearing yelps when you are deaf make corpse visible if stethoscope told you about it being there sceptre of might database entry word change @@ -65,6 +64,7 @@ rehumanizing after being poly'd into vampire left hero with ability to sense Warn_of_mon wouldn't have been able to sense giant ants if any creature were to have that ability, caused by using 0 instead of NON_PM for 'none' tone down energy vortex's drain energy attack +fix message typo if tame mind flayer dies trying to eat Medusa's brains Platform- and/or Interface-Specific Fixes diff --git a/src/eat.c b/src/eat.c index 4e97a5818..bea0ccc4c 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 eat.c $NHDT-Date: 1450573885 2015/12/20 01:11:25 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.156 $ */ +/* NetHack 3.6 eat.c $NHDT-Date: 1451086430 2015/12/25 23:33:50 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.157 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -494,7 +494,7 @@ int *dmg_p; /* for dishing out extra damage in lieu of Int loss */ } else { if (magr->mtame && !visflag) /* parallels mhitm.c's brief_feeling */ - You("have a sad thought for a moment, then is passes."); + You("have a sad thought for a moment, then it passes."); return MM_AGR_DIED; } }