home · contact · privacy
Fix hardcoding of MAGIC MEAT thing name.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 27 Jan 2015 02:22:50 +0000 (03:22 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 27 Jan 2015 02:22:50 +0000 (03:22 +0100)
TODO
src/server/thing_actions.c

diff --git a/TODO b/TODO
index 9548c13d266664be30ee952f8ea4633630ae69ae..49150b5ad74f160ae79d45610a69c3ceaf622fa4 100644 (file)
--- 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:
index 3542254b7d79082268cca727c65f3679a5f8511e..dbf600c4666bdf76368287ea759a0d8245a816a8 100644 (file)
@@ -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.");
 }