diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-08-15 00:27:47 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2016-08-15 00:27:47 +0200 |
commit | ef480fadad071060d4ae00288399502d53ff1af8 (patch) | |
tree | 8849744eec006de440f88238bd04980c5c12c3c7 | |
parent | fea0cb16f2e73ec21891ac14cdc10d9d8f518cfe (diff) |
Warning fixes
-rw-r--r-- | src/server/scripts/Spells/spell_item.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index b797d8689fb..9390939d119 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -2747,7 +2747,7 @@ public: return GetOwner()->GetTypeId() == TYPEID_PLAYER; } - void CalculateAmount(AuraEffect const* aurEff, int32& amount, bool& canBeRecalculated) + void CalculateAmount(AuraEffect const* /*aurEff*/, int32& amount, bool& /*canBeRecalculated*/) { if (Item* artifact = GetOwner()->ToPlayer()->GetItemByGuid(GetAura()->GetCastItemGUID())) amount = GetSpellInfo()->GetEffect(EFFECT_1)->BasePoints * std::max(artifact->GetTotalPurchasedArtifactPowers(), 34u) / 100; @@ -2784,7 +2784,7 @@ public: return GetOwner()->GetTypeId() == TYPEID_PLAYER; } - void CalculateAmount(AuraEffect const* aurEff, int32& amount, bool& canBeRecalculated) + void CalculateAmount(AuraEffect const* /*aurEff*/, int32& amount, bool& /*canBeRecalculated*/) { if (Item* artifact = GetOwner()->ToPlayer()->GetItemByGuid(GetAura()->GetCastItemGUID())) amount = GetSpellInfo()->GetEffect(EFFECT_1)->BasePoints * std::max(artifact->GetTotalPurchasedArtifactPowers(), 34u) / 100; |