diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp index 445404ce961..1440f800260 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp @@ -150,7 +150,7 @@ class boss_baltharus_the_warborn : public CreatureScript { if (me->HealthBelowPctDamaged(50, damage) && _cloneCount == 0) { - _cloneCount++; + ++_cloneCount; events.ScheduleEvent(EVENT_CLONE, Milliseconds(1)); } } @@ -158,12 +158,12 @@ class boss_baltharus_the_warborn : public CreatureScript { if (me->HealthBelowPctDamaged(66, damage) && _cloneCount == 0) { - _cloneCount++; + ++_cloneCount; events.ScheduleEvent(EVENT_CLONE, Milliseconds(1)); } else if (me->HealthBelowPctDamaged(33, damage) && _cloneCount == 1) { - _cloneCount++; + ++_cloneCount; events.ScheduleEvent(EVENT_CLONE, Milliseconds(1)); } } |