From ddcf0e79b6355a0f7ac4a6ce358a72864143e075 Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Sun, 25 Sep 2022 18:11:31 +0200 Subject: [PATCH] =?UTF-8?q?fix(Scripts/Brewfest):=20Added=20inebriate=20ef?= =?UTF-8?q?fect=20to=20Complimentary=20Brewfe=E2=80=A6=20(#13112)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(Scripts/Brewfest): Added inebriate effect to Complimentary Brewfest Sampler. Fixes #13085 --- src/server/scripts/Events/brewfest.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/scripts/Events/brewfest.cpp b/src/server/scripts/Events/brewfest.cpp index 1c62dd4ea..1c4cf1867 100644 --- a/src/server/scripts/Events/brewfest.cpp +++ b/src/server/scripts/Events/brewfest.cpp @@ -294,6 +294,7 @@ enum darkIronAttack SPELL_DRUNKEN_MASTER = 42696, SPELL_SUMMON_PLANS_A = 48145, SPELL_SUMMON_PLANS_H = 49318, + SPELL_WEAK_ALCOHOL = 42523, // Dark Irons SPELL_ATTACK_KEG = 42393, @@ -1271,6 +1272,8 @@ class spell_brewfest_toss_mug : public SpellScript creature->CastSpell(caster, SPELL_THROW_MUG_TO_PLAYER, true); } } + + caster->CastSpell(caster, SPELL_WEAK_ALCOHOL, true); } void Register() override