fix(Scripts/Spells): Omen of Clarity should not proc from Revitalize. (#13867)

This commit is contained in:
UltraNix
2023-01-02 20:59:02 +01:00
committed by GitHub
parent af2d3a7cfc
commit 44c1d9898c

View File

@@ -63,6 +63,11 @@ enum DruidSpells
SPELL_DRUID_ITEM_T10_FERAL_4P_BONUS = 70726,
};
enum DruidIcons
{
SPELL_ICON_REVITALIZE = 2862
};
// 1178 - Bear Form (Passive)
// 9635 - Dire Bear Form (Passive)
class spell_dru_bear_form_passive : public AuraScript
@@ -219,6 +224,12 @@ class spell_dru_omen_of_clarity : public AuraScript
return false;
}
// Revitalize
if (spellInfo->SpellIconID == SPELL_ICON_REVITALIZE)
{
return false;
}
return true;
}