From: nethack.rankin Date: Sat, 10 Sep 2005 02:40:51 +0000 (+0000) Subject: choking on gold X-Git-Tag: MOVE2GIT~1238 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c290666a6da8957d521cc2e08b6a0f9259deaa1;p=nethack choking on gold From a bug report: "choked on an a very rich meal". --- diff --git a/doc/fixes34.4 b/doc/fixes34.4 index 2b1ffb780..282d5bc6d 100644 --- a/doc/fixes34.4 +++ b/doc/fixes34.4 @@ -146,6 +146,7 @@ describe locomotion method accurately when flyers traverse ladders or holes when there were multiple boulders at a location, moving one of them sometimes resulted in line-of-sight anomalies unicorn can't catch gems if it is asleep or paralyzed +fix grammar when choking on gold Platform- and/or Interface-Specific Fixes diff --git a/src/eat.c b/src/eat.c index 968da1f3e..62dc27cec 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1,4 +1,4 @@ -/* SCCS Id: @(#)eat.c 3.5 2005/06/21 */ +/* SCCS Id: @(#)eat.c 3.5 2005/09/09 */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -224,7 +224,7 @@ choke(food) /* To a full belly all food is bad. (It.) */ if(food) { You("choke over your %s.", foodword(food)); if (food->oclass == COIN_CLASS) { - Strcpy(killer.name, "a very rich meal"); + Strcpy(killer.name, "very rich meal"); } else { Strcpy(killer.name, food_xname(food, FALSE)); if (food->otyp == CORPSE &&