home
·
contact
·
privacy
projects
/
plomrogue2
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea5ddf2
)
Add install/uninstall feedback messages.
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 7 Dec 2020 02:29:10 +0000
(
03:29
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 7 Dec 2020 02:29:10 +0000
(
03:29
+0100)
plomrogue/tasks.py
patch
|
blob
|
history
diff --git
a/plomrogue/tasks.py
b/plomrogue/tasks.py
index f3945c2a36366ea7b9a370a8e35a0772ed1490c8..9165cd44b63d0adece3c1da95366cdbd7b5fae4a 100644
(file)
--- a/
plomrogue/tasks.py
+++ b/
plomrogue/tasks.py
@@
-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."')