From 161a29657b6e92f7aee55aa2e3753f4be5882906 Mon Sep 17 00:00:00 2001 From: Bobblybook Date: Fri, 11 Oct 2024 23:40:06 +1100 Subject: [PATCH] corrections --- .../dungeons/wotlk/draktharonkeep/DrakTharonKeepActions.cpp | 2 +- .../dungeons/wotlk/draktharonkeep/DrakTharonKeepTriggers.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); }