X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plomrogue%2Ftasks.py;h=83a1b02306c497d2c607ec7a198bb8fdc3b60bab;hb=79c5610b42cd800dfff77d8d4e6b6e0da993b54a;hp=10e4055e4c3799745757c6f3a8bf9d001eb0d49c;hpb=3ea5a9fb6797a438f6f9847c2c442613bc8b0d1c;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)