Created
March 27, 2017 19:24
-
-
Save Demonid/ff7753d47141230f5b168f479d4a150a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp | |
index bb30d90..fed0359 100644 | |
--- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp | |
+++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp | |
@@ -171,6 +173,12 @@ class boss_blood_queen_lana_thel : public CreatureScript | |
void EnterCombat(Unit* who) override | |
{ | |
+ if (instance->GetBossState(DATA_BLOOD_PRINCE_COUNCIL) != DONE) | |
+ { | |
+ EnterEvadeMode(); | |
+ return; | |
+ } | |
+ | |
if (!instance->CheckRequiredBosses(DATA_BLOOD_QUEEN_LANA_THEL, who->ToPlayer())) | |
{ | |
EnterEvadeMode(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment