diff options
author | Machiavelli <machiaveltman@gmail.com> | 2012-01-05 03:29:08 -0800 |
---|---|---|
committer | Machiavelli <machiaveltman@gmail.com> | 2012-01-05 03:29:08 -0800 |
commit | 1d3cbe06140b1d7ad7765fa6f3eb38b3e0d75e01 (patch) | |
tree | 72b569998d9e38da051cc8112f0d92528a92ca3d /src | |
parent | ac265d7ea27760fa4440ded6cfc4383fbd155f4b (diff) | |
parent | 894d4c0d66e4ba9820c9c52dd941c4286bd6585a (diff) |
Merge pull request #4636 from Aokromes/master
More typo fix by Persephone.
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Chat/Chat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Chat/Chat.cpp b/src/server/game/Chat/Chat.cpp index cafa7d2048b..cd9881055a7 100755 --- a/src/server/game/Chat/Chat.cpp +++ b/src/server/game/Chat/Chat.cpp @@ -885,7 +885,7 @@ bool ChatHandler::ShowHelpForSubCommands(ChatCommand* table, char const* cmd, ch std::string list; for (uint32 i = 0; table[i].Name != NULL; ++i) { - // must be available (ignore handler existence for show command with possible avalable subcomands) + // must be available (ignore handler existence for show command with possible available subcomands) if (!isAvailable(table[i])) continue; @@ -924,7 +924,7 @@ bool ChatHandler::ShowHelpForCommand(ChatCommand* table, const char* cmd) { for (uint32 i = 0; table[i].Name != NULL; ++i) { - // must be available (ignore handler existence for show command with possible avalable subcomands) + // must be available (ignore handler existence for show command with possible available subcomands) if (!isAvailable(table[i])) continue; @@ -954,7 +954,7 @@ bool ChatHandler::ShowHelpForCommand(ChatCommand* table, const char* cmd) { for (uint32 i = 0; table[i].Name != NULL; ++i) { - // must be available (ignore handler existence for show command with possible avalable subcomands) + // must be available (ignore handler existence for show command with possible available subcomands) if (!isAvailable(table[i])) continue; |