aboutsummaryrefslogtreecommitdiff
path: root/src/game/Chat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Chat.cpp')
-rw-r--r--src/game/Chat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp
index 41cdac7c7d2..068d524b9ad 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();