diff options
| author | Gacko <gacko28@gmx.de> | 2013-04-12 17:34:43 +0200 |
|---|---|---|
| committer | Gacko <gacko28@gmx.de> | 2013-04-12 17:36:47 +0200 |
| commit | 96ad520ea3708621f5466aeb5fc2b8d82f837607 (patch) | |
| tree | 525bec5919cbb7cf3a3c401325fe36d5c1573632 /src | |
| parent | f9422066f22dcf82a86550e11bc0bf4674e7511c (diff) | |
Script/Spell: Apply Frost Imbued Blade only in 25 man mode
Note: Quest credit spells are already casted in 25 man mode only.
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp index ea74d8ec61c..7294e4a5571 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp @@ -1131,7 +1131,8 @@ class spell_sindragosa_frost_breath : public SpellScriptLoader if (!target) return; - if (target->GetQuestStatus(QUEST_FROST_INFUSION) != QUEST_STATUS_INCOMPLETE) + // Check difficulty and quest status + if (!(target->GetRaidDifficulty() & RAID_DIFFICULTY_MASK_25MAN) || target->GetQuestStatus(QUEST_FROST_INFUSION) != QUEST_STATUS_INCOMPLETE) return; // Check if player has Shadow's Edge equipped and not ready for infusion |
