aboutsummaryrefslogtreecommitdiff
path: root/src/game/BattleGroundRV.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/BattleGroundRV.cpp')
-rw-r--r--src/game/BattleGroundRV.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/BattleGroundRV.cpp b/src/game/BattleGroundRV.cpp
index 06b96f4423c..3815cdf20c6 100644
--- a/src/game/BattleGroundRV.cpp
+++ b/src/game/BattleGroundRV.cpp
@@ -68,7 +68,7 @@ void BattleGroundRV::Update(uint32 diff)
setState(BG_RV_STATE_OPEN_PILARS);
break;
case BG_RV_STATE_OPEN_PILARS:
- for(i = BG_RV_OBJECT_PILAR_1; i <= BG_RV_OBJECT_PULLEY_2; ++i)
+ for (i = BG_RV_OBJECT_PILAR_1; i <= BG_RV_OBJECT_PULLEY_2; ++i)
DoorOpen(i);
setTimer(BG_RV_PILAR_TO_FIRE_TIMER);
setState(BG_RV_STATE_OPEN_FIRE);
@@ -81,7 +81,7 @@ void BattleGroundRV::Update(uint32 diff)
break;
case BG_RV_STATE_CLOSE_PILARS:
uint32 i;
- for(i = BG_RV_OBJECT_PILAR_1; i <= BG_RV_OBJECT_PULLEY_2; ++i)
+ for (i = BG_RV_OBJECT_PILAR_1; i <= BG_RV_OBJECT_PULLEY_2; ++i)
DoorOpen(i);
setTimer(BG_RV_PILAR_TO_FIRE_TIMER);
setState(BG_RV_STATE_CLOSE_FIRE);