From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 19 Dec 2020 03:47:51 +0000 (+0100)
Subject: Fix cookie message.
X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/%7B%7Bdb.prefix%7D%7D/%7B%7Bprefix%7D%7D?a=commitdiff_plain;h=79c5610b42cd800dfff77d8d4e6b6e0da993b54a;p=plomrogue2

Fix cookie message.
---

diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py
index 10e4055..83a1b02 100644
--- a/plomrogue/tasks.py
+++ b/plomrogue/tasks.py
@@ -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)