From e5f82cdacdac6f446faf3138f8eeca7f66a77b90 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sat, 11 Sep 2010 22:26:19 +0000 Subject: last words are collected in the last 40 messages --- src/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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(): -- cgit v1.2.3