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 f029ba7d74a..789936302fc 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -910,7 +910,7 @@ bool ChatHandler::ExecuteCommandInTable(ChatCommand *table, const char* text, co while (*text == ' ') ++text; - for(uint32 i = 0; table[i].Name != NULL; i++) + for(uint32 i = 0; table[i].Name != NULL; ++i) { if( !hasStringAbbr(table[i].Name, cmd.c_str()) ) continue; |