diff options
| author | maximius <none@none> | 2009-09-14 16:02:13 -0700 |
|---|---|---|
| committer | maximius <none@none> | 2009-09-14 16:02:13 -0700 |
| commit | b37f9b1e55bd4b80597b8b8c3f461aad70ccc5c1 (patch) | |
| tree | c637055aab5d8f0e733fc611fada42c43ad04d83 /src/game/Chat.cpp | |
| parent | 7b664c8c9fdda2b963f7883684a2f31d0f79551b (diff) | |
*Merged MaNGOS [8458], [8475], [8476] by ogeraisi, thanks to all authors :)
--HG--
branch : trunk
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..41cdac7c7d2 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(); |
