aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMalcrom <malcromdev@gmail.com>2024-01-17 01:51:42 -0400
committerGitHub <noreply@github.com>2024-01-17 06:51:42 +0100
commit160bd20c9ae463ba7f1b9970276f72a90df8a7fe (patch)
tree90c384cf57eb067314c7f4f324d0d53657c63a9e /src
parentba627c1d1c4289c02252a28196fdf53ce532e390 (diff)
Scripts/ExilesReach: Update phasing when Stand your Ground quest removed (#29589)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/ExilesReach/zone_exiles_reach.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/scripts/ExilesReach/zone_exiles_reach.cpp b/src/server/scripts/ExilesReach/zone_exiles_reach.cpp
index 6866f872d0c..6ecb380ca1e 100644
--- a/src/server/scripts/ExilesReach/zone_exiles_reach.cpp
+++ b/src/server/scripts/ExilesReach/zone_exiles_reach.cpp
@@ -282,7 +282,10 @@ public:
{
// Remove aura if player drops quest
if (newStatus == QUEST_STATUS_NONE)
+ {
+ player->CastSpell(player, SPELL_UPDATE_PHASE_SHIFT);
player->CastSpell(player, SPELL_COMBAT_TRAINING_COMPLETE);
+ }
}
};