From 73b8f5b45fadde0850802570a14d22ae205a211d Mon Sep 17 00:00:00 2001 From: mik1893 Date: Sat, 13 Aug 2016 11:10:20 +0200 Subject: [PATCH] Core/Spells: fix removal of Disarm (scorpid sting) cooldown with Readiness --- src/scripts/Spells/spell_hunter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/scripts/Spells/spell_hunter.cpp b/src/scripts/Spells/spell_hunter.cpp index 7a22cddc6..d13ff837f 100644 --- a/src/scripts/Spells/spell_hunter.cpp +++ b/src/scripts/Spells/spell_hunter.cpp @@ -744,6 +744,9 @@ class spell_hun_readiness : public SpellScriptLoader else caster->RemoveSpellCooldown(spellInfo->Id, false); } + + // force removal of the disarm cooldown + caster->RemoveSpellCooldown(SPELL_HUNTER_CHIMERA_SHOT_SCORPID, false); } }