From 6b3fdec468498997984a3ca5dc763fa6ef436b24 Mon Sep 17 00:00:00 2001
From: Florent Le Coz <louiz@louiz.org>
Date: Tue, 11 Jan 2011 02:52:00 +0100
Subject: Fix // on roster

---
 src/core.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

(limited to 'src')

diff --git a/src/core.py b/src/core.py
index f9a1f419..5db2f4f8 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1300,9 +1300,7 @@ class Core(object):
         """
         if line == "":
             return
-        if line.startswith('//'):
-            self.command_say(line[1:])
-        elif line.startswith('/') and not line.startswith('/me '):
+        if line.startswith('/'):
             command = line.strip()[:].split()[0][1:]
             arg = line[2+len(command):] # jump the '/' and the ' '
             # example. on "/link 0 open", command = "link" and arg = "0 open"
-- 
cgit v1.2.3