From 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 Mon Sep 17 00:00:00 2001 From: Spp Date: Wed, 7 Apr 2010 19:12:44 +0200 Subject: Code style (game + scripts only): "for(" --> "for (" --HG-- branch : trunk --- src/game/PetHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/PetHandler.cpp') 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]); -- cgit v1.2.3