diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-01-08 13:47:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-01-08 13:47:17 +0300 |
commit | 4a823c0ba94c620bd0e51fc61f22c068661946cf (patch) | |
tree | 3583187465cbd142b6c0062a2cee8861a664eea8 | |
parent | 3c09bcd9950f38a72b40410425e3e93744681626 (diff) | |
download | plus-4a823c0ba94c620bd0e51fc61f22c068661946cf.tar.gz plus-4a823c0ba94c620bd0e51fc61f22c068661946cf.tar.bz2 plus-4a823c0ba94c620bd0e51fc61f22c068661946cf.tar.xz plus-4a823c0ba94c620bd0e51fc61f22c068661946cf.zip |
fix wrong check in commands.
-rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 827eebe92..96369c53e 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -871,7 +871,7 @@ impHandler0(dirs) impHandler2(info) { - if (!tab || !player_node || !tmwServerVersion > 0) + if (!tab || !player_node || tmwServerVersion > 0) return; switch (tab->getType()) |