From 36f7d54f9da68f86bc53d8e711b9e36a172a09ba Mon Sep 17 00:00:00 2001 From: Luxferre Date: Sat, 20 Dec 2025 21:20:07 +0200 Subject: [PATCH] added deck.chat modules --- deck/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deck/chat.py b/deck/chat.py index dec31d3..3cc1827 100644 --- a/deck/chat.py +++ b/deck/chat.py @@ -59,7 +59,7 @@ class DeckChat: """Start the chat loop""" while True: try: - input_msg = input('\n' + self.chat_prefix).strip() + input_msg = input(self.chat_prefix).strip() cmd, msg = self._detect_command(input_msg) output, self.state = self.command_handlers[cmd](msg, self.state) if self.paginate_n > 0: