diff --git a/sql/updates/world/custom/custom_2019_02_17_01_world.sql b/sql/updates/world/custom/custom_2019_02_17_01_world.sql new file mode 100644 index 00000000000..e4bbad304d8 --- /dev/null +++ b/sql/updates/world/custom/custom_2019_02_17_01_world.sql @@ -0,0 +1,2 @@ +UPDATE `spell_proc` SET `Cooldown`= 100 WHERE `SpellId`= 76838; +UPDATE `spell_proc` SET `SpellPhaseMask`= 1, `Cooldown`= 100 WHERE `SpellId`= 77222; diff --git a/src/server/scripts/Spells/spell_warrior.cpp b/src/server/scripts/Spells/spell_warrior.cpp index 6ed9decef70..be07cf44b46 100644 --- a/src/server/scripts/Spells/spell_warrior.cpp +++ b/src/server/scripts/Spells/spell_warrior.cpp @@ -1077,10 +1077,6 @@ class spell_warr_strikes_of_opportunity : public AuraScript bool CheckProc(ProcEventInfo& eventInfo) { - if (SpellInfo const* spell = eventInfo.GetSpellInfo()) - if (spell->Id == SPELL_WARRIOR_OPPORTUNITY_STRIKE) - return false; - return roll_chance_i(GetEffect(EFFECT_0)->GetAmount()); }