diff options
author | maximius <none@none> | 2009-09-14 16:49:23 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-09-14 16:49:23 -0700 |
commit | 140ec674a040bdc04086472330a289c2d15ecc65 (patch) | |
tree | 343ac40e805c3139a2bc1bd80e956e89c5a1653c /src/game/Chat.cpp | |
parent | b37f9b1e55bd4b80597b8b8c3f461aad70ccc5c1 (diff) |
Backed out changeset d3fe2d6d504a (please test your patches thoroughly before getting me to push them ogeraisi)
--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 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(); |