diff options
author | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-08 08:20:08 +0200 |
commit | 4635fbc0201846721287a1eb730491262237babd (patch) | |
tree | 5b02b41f0099fd9d3af7f3a826ef0ca6dfe80748 /src/game/Debugcmds.cpp | |
parent | 46f0674e237dd8fe97ba4f0769e18b4adfce841b (diff) |
Code Style (game + scripts only):
"!=" --> " != " (when needed)
" !=" --> " !="
"!= " --> "!= "
--HG--
branch : trunk
Diffstat (limited to 'src/game/Debugcmds.cpp')
-rw-r--r-- | src/game/Debugcmds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Debugcmds.cpp b/src/game/Debugcmds.cpp index 02ebbc329b4..ee8c623c3d0 100644 --- a/src/game/Debugcmds.cpp +++ b/src/game/Debugcmds.cpp @@ -49,7 +49,7 @@ bool ChatHandler::HandleDebugSendSpellFailCommand(const char* args) return false; uint8 failnum = (uint8)atoi(px); - if (failnum == 0 && *px!='0') + if (failnum == 0 && *px != '0') return false; char* p1 = strtok(NULL, " "); |