diff options
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r-- | src/map/mercenary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c index 2c76ed8d6..0d5fb328d 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -95,7 +95,7 @@ int merc_hom_vaporize(struct map_session_data *sd, int flag) if (status_isdead(&hd->bl)) return 0; //Can't vaporize a dead homun. - if (flag && status_calc_life(hd->battle_status.hp, hd->battle_status.max_hp)< 80) + if (flag && percent(hd->battle_status.hp, hd->battle_status.max_hp) < 80) return 0; hd->regen.state.block = 3; //Block regen while vaporized. |