home · contact · privacy
Fix cookie message.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 19 Dec 2020 03:47:51 +0000 (04:47 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 19 Dec 2020 03:47:51 +0000 (04:47 +0100)
plomrogue/tasks.py

index 10e4055e4c3799745757c6f3a8bf9d001eb0d49c..83a1b02306c497d2c607ec7a198bb8fdc3b60bab 100644 (file)
@@ -269,7 +269,7 @@ class Task_INTOXICATE(Task):
             eaten = self.thing.uncarry()
             self.thing.game.remove_thing(eaten)
         elif self.thing.carrying.type_ == 'Cookie':
-            self.thing.send_msg('CHAT ' + quote('You eat a cookie and gain the ability to draw the following character: "%s"' % self.thing.carrying.thing_char))
+            self.thing.send_msg('CHAT ' + quote('You eat a cookie that grants the ability to draw the following character: "%s"' % self.thing.carrying.thing_char))
             self.thing.add_cookie_char(self.thing.carrying.thing_char)
             eaten = self.thing.uncarry()
             self.thing.game.remove_thing(eaten)