diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 356ed0c09..1c37d201a 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -4304,10 +4304,7 @@ namespace Game.Spells continue; } - if (hit) - m_caster.ModifyPower(cost.Power, -cost.Amount); - else - m_caster.ModifyPower(cost.Power, -RandomHelper.IRand(0, cost.Amount / 4)); + m_caster.ModifyPower(cost.Power, -cost.Amount); } }