aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp6
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 5196c39e5c8..9bc4de0ae92 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
@@ -148,7 +148,7 @@ class boss_baltharus_the_warborn : public CreatureScript
{
if (me->HealthBelowPctDamaged(50, damage) && _cloneCount == 0)
{
- _cloneCount++;
+ ++_cloneCount;
events.ScheduleEvent(EVENT_CLONE, Milliseconds(1));
}
}
@@ -156,12 +156,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));
}
}