X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.js?a=blobdiff_plain;ds=inline;f=plomrogue%2Ftasks.py;h=83a1b02306c497d2c607ec7a198bb8fdc3b60bab;hb=af6c471be94c1a15cdd0df1d4add917b7a686eaa;hp=10e4055e4c3799745757c6f3a8bf9d001eb0d49c;hpb=1a8eb9fa4e8dfaae9a0508882f49575ab68fc45c;p=plomrogue2 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)