summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index a4dc67b91..633c774d7 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -316,8 +316,9 @@ int battle_heal(struct block_list *bl,struct block_list *target,int hp,int sp,in
if (hp == 0 && sp == 0)
return 0;
- if (hp < 0)
- return battle_damage(bl,target,-hp,flag);
+//If battle_heal was invoked, HP/SP should just be reduced without damage animation. [Skotlex]
+// if (hp < 0)
+// return battle_damage(bl,target,-hp,flag);
if (target->type == BL_MOB)
return mob_heal((struct mob_data *)target,hp);