From fd6387c830804ebcf53cb68de99a0298e8512cba Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 25 May 2017 12:45:17 -0400 Subject: [PATCH] Fix mana pres math --- zone/effects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/effects.cpp b/zone/effects.cpp index 135eb3f95..8d8265e32 100644 --- a/zone/effects.cpp +++ b/zone/effects.cpp @@ -364,7 +364,7 @@ int32 Client::GetActSpellCost(uint16 spell_id, int32 cost) int16 focus_redux = GetFocusEffect(focusManaCost, spell_id); PercentManaReduction += focus_redux; - cost -= (cost * (PercentManaReduction / 100)); + cost -= cost * PercentManaReduction / 100; // Gift of Mana - reduces spell cost to 1 mana if(focus_redux >= 100) {