diff options
| author | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
|---|---|---|
| committer | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
| commit | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (patch) | |
| tree | eaad3fb4d60703db8df6a94a197321c7125f58ef /src/game/PetHandler.cpp | |
| parent | b27ce42704c33e292bda390265bb8fd01a433505 (diff) | |
Code style (game + scripts only):
"for(" --> "for ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/PetHandler.cpp')
| -rw-r--r-- | src/game/PetHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/PetHandler.cpp b/src/game/PetHandler.cpp index 227c8ee2331..548349691e9 100644 --- a/src/game/PetHandler.cpp +++ b/src/game/PetHandler.cpp @@ -418,7 +418,7 @@ void WorldSession::HandlePetSetAction( WorldPacket & recv_data ) uint32 data[2]; bool move_command = false; - for(uint8 i = 0; i < count; ++i) + for (uint8 i = 0; i < count; ++i) { recv_data >> position[i]; recv_data >> data[i]; @@ -465,7 +465,7 @@ void WorldSession::HandlePetSetAction( WorldPacket & recv_data ) } } - for(uint8 i = 0; i < count; ++i) + for (uint8 i = 0; i < count; ++i) { uint32 spell_id = UNIT_ACTION_BUTTON_ACTION(data[i]); uint8 act_state = UNIT_ACTION_BUTTON_TYPE(data[i]); |
