diff options
Diffstat (limited to 'src/game/Chat.cpp')
-rw-r--r-- | src/game/Chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index 068d524b9ad..34a1df42e0a 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -1274,7 +1274,7 @@ valid examples: char c = reader.peek(); // ignore enchants etc. - while(c >='0' && c <='9' || c==':') + while((c >='0' && c <='9') || c==':') { reader.ignore(1); c = reader.peek(); |