From 79c5610b42cd800dfff77d8d4e6b6e0da993b54a Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 19 Dec 2020 04:47:51 +0100 Subject: [PATCH] Fix cookie message. --- plomrogue/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2