diff options
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 137af795f..c8de8e07b 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1473,7 +1473,9 @@ int skill_counter_additional_effect (struct block_list* src, struct block_list * hp += sd->magic_hp_gain_value; } if( hp || sp ) - status_heal(src, hp, sp, battle_config.show_hp_sp_gain?2:0); + {// updated to force healing to allow healing through berserk + status_heal(src, hp, sp, battle_config.show_hp_sp_gain ? 3 : 1); + } } // Trigger counter-spells to retaliate against damage causing skills. |