From 11381d631c33deb9c0b85496534b20135c1d320e Mon Sep 17 00:00:00 2001 From: bitofhope Date: Tue, 16 Jan 2024 11:27:46 +0200 Subject: [PATCH] Rephrase "rotten" non-rottable items --- src/eat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eat.c b/src/eat.c index a07fb3a50..1b4f1c373 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1718,7 +1718,7 @@ static int rottenfood(struct obj *obj) { pline("Blecch! %s %s!", - is_metallic(obj) ? "Awful" : "Rotten", foodword(obj)); + is_rottable(obj) ? "Rotten" : "Awful", foodword(obj)); if (!rn2(4)) { if (Hallucination) You_feel("rather trippy.");