From ee09fb8f9df0c4f6528ae06835e1e196e1fc5d4c Mon Sep 17 00:00:00 2001 From: Stoabrogga <38475780+Stoabrogga@users.noreply.github.com> Date: Sun, 8 Sep 2019 23:39:34 +0200 Subject: [PATCH] fix(Core/Spell): "Taming the Beast" hunter quests, part 2 (#2271) Co-authored-by: Mitradis --- src/server/scripts/Spells/spell_hunter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index 184d47c0c..da16f80be 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -321,7 +321,7 @@ class spell_hun_taming_the_beast : public SpellScriptLoader { if (Unit* target = GetTarget()) if (Creature* creature = target->ToCreature()) - creature->DespawnOrUnsummon(); + creature->DespawnOrUnsummon(1); } void Register()