aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuraEffects.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/SpellAuraEffects.h')
-rw-r--r--src/game/SpellAuraEffects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuraEffects.h b/src/game/SpellAuraEffects.h
index 59cd7b81614..71f42885e4f 100644
--- a/src/game/SpellAuraEffects.h
+++ b/src/game/SpellAuraEffects.h
@@ -49,8 +49,8 @@ class AuraEffect
void CalculatePeriodic(Unit * caster, bool create = false);
void CalculateSpellMod();
void ChangeAmount(int32 newAmount, bool mark = true);
- void RecalculateAmount() { if(!CanBeRecalculated()) return; ChangeAmount(CalculateAmount(GetCaster()), false); }
- void RecalculateAmount(Unit * caster) { if(!CanBeRecalculated()) return; ChangeAmount(CalculateAmount(caster), false); }
+ void RecalculateAmount() { if (!CanBeRecalculated()) return; ChangeAmount(CalculateAmount(GetCaster()), false); }
+ void RecalculateAmount(Unit * caster) { if (!CanBeRecalculated()) return; ChangeAmount(CalculateAmount(caster), false); }
bool CanBeRecalculated() const { return m_canBeRecalculated; }
void SetCanBeRecalculated(bool val) { m_canBeRecalculated = val; }
void HandleEffect(AuraApplication const * aurApp, uint8 mode, bool apply);