aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/server/game/Spells/Auras/SpellAuraEffects.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
index 06b065eb78d..af7bbfe175a 100755
--- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp
+++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
@@ -540,7 +540,10 @@ int32 AuraEffect::CalculateAmount(Unit * caster)
AddPctN(amount, pAurEff->GetAmount());
// Focused Power
- amount *= int32(caster->GetTotalAuraMultiplier(SPELL_AURA_MOD_HEALING_DONE_PERCENT));
+ // Reuse variable, not sure if this code below can be moved before Twin Disciplines
+ DoneActualBenefit = float(amount);
+ DoneActualBenefit *= caster->GetTotalAuraMultiplier(SPELL_AURA_MOD_HEALING_DONE_PERCENT);
+ amount = int32(DoneActualBenefit);
return amount;
}