diff --git a/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepActions.cpp b/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepActions.cpp index 3613f467..7d71d26a 100644 --- a/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepActions.cpp +++ b/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepActions.cpp @@ -154,7 +154,7 @@ bool NovosTargetPriorityAction::Execute(Event event) for (Unit* primaryTarget : selectedTargets) { - // Attack the first valid split target in the priority list + // Attack the first valid target in the priority list if (primaryTarget) { if (AI_VALUE(Unit*, "current target") != primaryTarget) diff --git a/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepTriggers.cpp b/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepTriggers.cpp index 0b9e439b..9ed4b191 100644 --- a/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepTriggers.cpp +++ b/src/strategy/dungeons/wotlk/draktharonkeep/DrakTharonKeepTriggers.cpp @@ -57,5 +57,5 @@ bool ArcaneFieldTrigger::IsActive() bool GiftOfTharonjaTrigger::IsActive() { - return bool(bot->HasAura(SPELL_GIFT_OF_THARONJA)); + return bot->HasAura(SPELL_GIFT_OF_THARONJA); }