summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.py b/src/gui.py
index d41cebf9..0a56caba 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -527,7 +527,7 @@ class Gui(object):
# build the list of the recent words
char_we_dont_want = [',', '(', ')', '.']
words = list()
- for msg in self.current_room().messages[:-9:-1]:
+ for msg in self.current_room().messages[:-40:-1]:
if not msg:
continue
for word in msg.txt.split():