summaryrefslogtreecommitdiff
path: root/src/gui.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui.py')
-rw-r--r--src/gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.py b/src/gui.py
index 6d046a89..299770eb 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -264,7 +264,7 @@ class Gui(object):
# build the list of the recent words
char_we_dont_want = [',', '(', ')', '.']
words = list()
- for msg in self.current_room().messages[:-6:-1]:
+ for msg in self.current_room().messages[:-9:-1]:
for word in msg.txt.split():
for char in char_we_dont_want: # remove the chars we don't want
word = word.replace(char, '')