From 46f0674e237dd8fe97ba4f0769e18b4adfce841b Mon Sep 17 00:00:00 2001 From: Spp Date: Wed, 7 Apr 2010 23:56:35 +0200 Subject: Code Style (game + scripts only): ">=" --> " >= " (when needed) " >=" --> " >=" ">= " --> ">= " "<=" --> " <= " (when needed) " <=" --> " <=" "<= " --> "<= " " ==" --> " ==" "== " --> "== " --HG-- branch : trunk --- src/game/Debugcmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/Debugcmds.cpp') diff --git a/src/game/Debugcmds.cpp b/src/game/Debugcmds.cpp index 7490f587b9d..02ebbc329b4 100644 --- a/src/game/Debugcmds.cpp +++ b/src/game/Debugcmds.cpp @@ -1101,11 +1101,11 @@ bool ChatHandler::HandleDebugUpdateCommand(const char* args) //check updateIndex if (chr->GetTypeId() == TYPEID_PLAYER) { - if (updateIndex>=PLAYER_END) return true; + if (updateIndex >= PLAYER_END) return true; } else { - if (updateIndex>=UNIT_END) return true; + if (updateIndex >= UNIT_END) return true; } char* pvalue = strtok(NULL, " "); -- cgit v1.2.3