From 172f73db921414f47975d9e3b25ef4e182a37e95 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Fri, 5 Jul 2024 20:06:03 +0200 Subject: [PATCH] fix(Core/Misc): unused param (#19286) --- src/server/scripts/Spells/spell_item.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index 9eb2652ab..2a69287c2 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -3992,7 +3992,6 @@ class spell_item_eye_of_grillok_aura : public AuraScript enum FelManaPotion { - SPELL_FEL_MANA_POTION = 38929, SPELL_ALCHEMIST_STONE = 17619, SPELL_ALCHEMIST_STONE_ENERGIZE = 21400 }; @@ -4006,7 +4005,7 @@ class spell_item_fel_mana_potion : public AuraScript return ValidateSpellInfo({ SPELL_ALCHEMIST_STONE, SPELL_ALCHEMIST_STONE_ENERGIZE }); } - void OnPeriodic(AuraEffect const* aurEff) + void OnPeriodic(AuraEffect const* /*aurEff*/) { if (Unit* caster = GetCaster()) if (caster->HasAura(SPELL_ALCHEMIST_STONE))