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 b127abb5..efb11166 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -507,7 +507,7 @@ class Gui(object):
self.window.input.refresh()
if line == "":
return
- if line.startswith('/'):
+ if line.startswith('/') and not line.startswith('/me '):
command = line.strip()[:].split()[0][1:]
args = line.strip()[:].split()[1:]
if command in self.commands.keys():