From 90eabbdae4109bd1df7b7395219fd9a4e2f8f461 Mon Sep 17 00:00:00 2001 From: Someone Date: Mon, 10 Jan 2022 16:36:41 +0100 Subject: [PATCH] modules/CommandTissJoin.py --- modules/CommandTissJoin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/CommandTissJoin.py b/modules/CommandTissJoin.py index 308e4e6..a799aa6 100644 --- a/modules/CommandTissJoin.py +++ b/modules/CommandTissJoin.py @@ -15,7 +15,7 @@ class CommandTissJoin(AbstractCommand): CONFIG = {"display_name": "somebot-command", "auto_complete": True, "auto_complete_hint": "", } - USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = "Parses input and tries to join every LVA-channel. There is no undo." + USEINFO = CONFIG["auto_complete_desc"] = CONFIG["description"] = AbstractCommand.ICON_PRIVATE+"Parses input and tries to join every LVA-channel. There is no undo." def on_POST(self, request, data): @@ -55,6 +55,6 @@ class CommandTissJoin(AbstractCommand): if result == "": - request.cmd_respond_text_temp("### ``TISS-Join results``\nFailed to detect any courses. :(") + request.respond_cmd_err("``/"+self.TRIGGER+"`` failed to detect any courses.") - request.cmd_respond_text_temp("### ``TISS-Join results``"+result) + request.respond_cmd_temp("## :white_check_mark: Success! :)\n#### Results..."+result) -- 2.43.0