diff options
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index 5fc9047c..c18f6d76 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -323,6 +323,7 @@ class ChatTab(Tab): if not self.execute_command(clean_text): if txt.startswith('//'): txt = txt[1:] + self.core.run_event('enter', line=txt) self.command_say(txt) self.cancel_paused_delay() @@ -392,6 +393,9 @@ class ChatTab(Tab): self.text_win.refresh(self._text_buffer) self.input.refresh() + def get_conversation_messages(self): + return self._room.messages + def command_say(self, line): raise NotImplementedError |