home · contact · privacy
Add install/uninstall feedback messages.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 7 Dec 2020 02:29:10 +0000 (03:29 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 7 Dec 2020 02:29:10 +0000 (03:29 +0100)
plomrogue/tasks.py

index f3945c2a36366ea7b9a370a8e35a0772ed1490c8..9165cd44b63d0adece3c1da95366cdbd7b5fae4a 100644 (file)
@@ -198,5 +198,7 @@ class Task_INSTALL(Task):
         if self.thing.carrying:
             self.thing.carrying.install()
             self.thing.carrying = None
+            self.thing.send_msg('CHAT "You install the thing you carry."')
         else:
             self._get_uninstallables()[0].uninstall()
+            self.thing.send_msg('CHAT "You uninstall the thing here."')