diff options
author | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
commit | 2e127f7a30706dc1d40c65de22ff02851732da24 (patch) | |
tree | 91f7e8033e9296fdd8dbb2d5a761c9980cc36f18 /src/game/NPCHandler.cpp | |
parent | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (diff) |
Code style (game + scripts only):
"while(" --> "while ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/NPCHandler.cpp')
-rw-r--r-- | src/game/NPCHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/NPCHandler.cpp b/src/game/NPCHandler.cpp index dad51d76586..085ab57f6a1 100644 --- a/src/game/NPCHandler.cpp +++ b/src/game/NPCHandler.cpp @@ -572,7 +572,7 @@ void WorldSession::SendStablePet(uint64 guid ) data << uint8(2); // 1 = current, 2/3 = in stable (any from 4,5,... create problems with proper show) ++num; - }while( result->NextRow() ); + }while ( result->NextRow() ); } data.put<uint8>(wpos, num); // set real data to placeholder @@ -629,7 +629,7 @@ void WorldSession::HandleStablePet( WorldPacket & recv_data ) // this slot not free, skip ++free_slot; - }while( result->NextRow() ); + }while ( result->NextRow() ); } WorldPacket data(SMSG_STABLE_RESULT, 1); |