From 4ef3fe22d99bbb2afefa17fc6a96cd6365320942 Mon Sep 17 00:00:00 2001 From: PatR Date: Thu, 1 Sep 2016 18:26:09 -0700 Subject: [PATCH] corpse eating feedback Eating a corpse and being told that it "tastes okay" (relatively recent change so that omnivores don't find the taste of everything to be "terrible") doesn't warrant an exclamation point. --- src/eat.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/eat.c b/src/eat.c index ff5390496..f827d71c0 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1675,20 +1675,18 @@ struct obj *otmp; if (!strncmpi(pmxnam, "the ", 4)) pmxnam += 4; - pline("%s%s %s!", + pline("%s%s %s %s%c", type_is_pname(&mons[mnum]) - ? "" : the_unique_pm(&mons[mnum]) ? "The " : "This ", + ? "" : the_unique_pm(&mons[mnum]) ? "The " : "This ", pmxnam, + Hallucination ? "is" : "tastes", /* tiger reference is to TV ads for "Frosted Flakes", breakfast cereal targeted at kids by "Tony the tiger" */ Hallucination - ? (yummy ? ((u.umonnum == PM_TIGER) ? "is gr-r-reat" - : "is gnarly") - : palatable ? "is copacetic" - : "is grody") - : (yummy ? "tastes delicious" - : palatable ? "tastes okay" - : "tastes terrible")); + ? (yummy ? ((u.umonnum == PM_TIGER) ? "gr-r-reat" : "gnarly") + : palatable ? "copacetic" : "grody") + : (yummy ? "delicious" : palatable ? "okay" : "terrible"), + (yummy || !palatable) ? '!' : '.'); } return retcode; -- 2.40.0