diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-02-27 14:31:28 -0300 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2020-04-24 17:18:47 +0200 |
commit | e39ea201cebb2581842930e1236befe45d38b5a7 (patch) | |
tree | e1c33b3ca85477f4a571eb61351e1629d706bee0 | |
parent | ebc06b1d0401be69066986e18d0e926170c58023 (diff) |
Core/Auras: fix unused parameter warning
(cherry picked from commit 40489b8d5722969cef11b9c48ee50ef366333073)
-rw-r--r-- | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index cac6834abc5..b8992c7ee36 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -3269,7 +3269,7 @@ void AuraEffect::HandleAuraModBaseResistancePCT(AuraApplication const* aurApp, u } } -void AuraEffect::HandleModResistancePercent(AuraApplication const* aurApp, uint8 mode, bool apply) const +void AuraEffect::HandleModResistancePercent(AuraApplication const* aurApp, uint8 mode, bool /*apply*/) const { if (!(mode & (AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK | AURA_EFFECT_HANDLE_STAT))) return; @@ -3490,7 +3490,7 @@ void AuraEffect::HandleModHealingDonePct(AuraApplication const* aurApp, uint8 mo player->UpdateHealingDonePercentMod(); } -void AuraEffect::HandleModTotalPercentStat(AuraApplication const* aurApp, uint8 mode, bool apply) const +void AuraEffect::HandleModTotalPercentStat(AuraApplication const* aurApp, uint8 mode, bool /*apply*/) const { if (!(mode & (AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK | AURA_EFFECT_HANDLE_STAT))) return; |