From: nethack.rankin Date: Sat, 16 Oct 2004 01:07:46 +0000 (+0000) Subject: two grammar bits X-Git-Tag: MOVE2GIT~1416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=467d35d9e4b7db4ba32b0029220d23bf85249e84;p=nethack two grammar bits Fix the two minor grammar problems for messages given when eating that were From a bug report: inappropriate or inconsistent capitalization in mid sentence for Ulch - That was rustproofed! and missing punctuation for the appended clause for cannibalism in Ulch - that meat was tainted cannibal! --- diff --git a/doc/fixes34.4 b/doc/fixes34.4 index b5f5ee46f..ace4cfb25 100644 --- a/doc/fixes34.4 +++ b/doc/fixes34.4 @@ -55,6 +55,7 @@ eliminate two very minor anomalies when using Luck to adjust random numbers destroying a worn item via dipping in burning oil would not unwear/unwield the item properly, possibly leading to various strange behaviors avoid a panic splitbill when shopkeeper is trapped by the door +grammar tidbit for message given when eating tainted meat is also cannibalism Platform- and/or Interface-Specific Fixes diff --git a/src/eat.c b/src/eat.c index cb4339517..879733828 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1,4 +1,4 @@ -/* SCCS Id: @(#)eat.c 3.4 2003/02/13 */ +/* SCCS Id: @(#)eat.c 3.4 2004/10/15 */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -1307,7 +1307,7 @@ eatcorpse(otmp) /* called when a corpse is selected as food */ pline("Ulch - that %s was tainted%s!", mons[mnum].mlet == S_FUNGUS ? "fungoid vegetation" : !vegetarian(&mons[mnum]) ? "meat" : "protoplasm", - cannibal ? " cannibal" : ""); + cannibal ? ", you cannibal" : ""); if (Sick_resistance) { pline("It doesn't seem at all sickening, though..."); } else { @@ -1966,7 +1966,7 @@ doeat() /* generic "eat" command funtion (see cmd.c) */ else otmp = splitobj(otmp, 1L); } - pline("Ulch - That %s was rustproofed!", xname(otmp)); + pline("Ulch - that %s was rustproofed!", xname(otmp)); /* The regurgitated object's rustproofing is gone now */ otmp->oerodeproof = 0; make_stunned(HStun + rn2(10), TRUE);