diff --git a/src/services/combat/CombatService.java b/src/services/combat/CombatService.java index 06a84ce2..dfa1d7ec 100644 --- a/src/services/combat/CombatService.java +++ b/src/services/combat/CombatService.java @@ -888,7 +888,7 @@ public class CombatService implements INetworkDispatch { if(healer.getSkillMod("expertise_healing_line_sp_heal") != null) healPotency += healer.getSkillMod("expertise_healing_line_sp_heal").getBase(); if(healPotency > 0) - healAmount += (healAmount * (healPotency / 100)); + healAmount += ((healAmount * healPotency) / 100); if(target.getSkillMod("expertise_healing_reduction") != null) healAmount *= (1 - target.getSkillMod("expertise_healing_reduction").getBase() / 100);