From: Christian Heller Date: Tue, 27 Jan 2015 02:22:50 +0000 (+0100) Subject: Fix hardcoding of MAGIC MEAT thing name. X-Git-Tag: tce~554 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=8d4de89107cf8e29c45c6375f4299b11d1d01d9a;hp=c1c88f66166ed26d0bd346570c37f006e3c8364b;p=plomrogue Fix hardcoding of MAGIC MEAT thing name. --- diff --git a/TODO b/TODO index 9548c13..49150b5 100644 --- a/TODO +++ b/TODO @@ -13,8 +13,6 @@ BOTH SERVER/CLIENT: SERVER: -- fix hardcoded MAGIC MEAT eating message in thing_actions.c - - grow amount of possible things from UINT8_MAX to UINT16_MAX CLIENT: diff --git a/src/server/thing_actions.c b/src/server/thing_actions.c index 3542254..dbf600c 100644 --- a/src/server/thing_actions.c +++ b/src/server/thing_actions.c @@ -183,7 +183,7 @@ static void playerbonus_use(uint8_t no_thing, uint8_t wrong_thing) update_log("You try to use this object, but fail."); return; } - update_log("You consume MAGIC MEAT."); + update_log("You consume this object."); }