From 6e918e5b3cd6627a0a23b4008dbe3d6bfe784abe Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 7 Dec 2020 03:29:10 +0100 Subject: [PATCH] Add install/uninstall feedback messages. --- plomrogue/tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index f3945c2..9165cd4 100644 --- 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."') -- 2.30.2