mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 10:30:27 +00:00
fix(Scripts/Spells): Omen of Clarity should not proc from Revitalize. (#13867)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user