From ec9c2b21c847acff2b43b2424aafa344819930d3 Mon Sep 17 00:00:00 2001 From: icxbb-xx Date: Wed, 25 Nov 2015 17:19:10 +0700 Subject: [PATCH] Follow up to 8ca20d1 * Revert code this wrong --- src/map/clif.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/map/clif.c b/src/map/clif.c index 38ba44a3d4..20600137e4 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3135,10 +3135,7 @@ void clif_updatestatus(struct map_session_data *sd,int type) break; case SP_HP: // On officials the HP never go below 1, even if you die [Lemongrass] - if( (sd->class_&MAPID_UPPERMASK) != MAPID_NOVICE ) - WFIFOL(fd,4)=max(1,sd->battle_status.hp); - else - WFIFOL(fd,4)=max((sd->battle_status.max_hp/2),sd->battle_status.hp); + WFIFOL(fd,4)=max(1,sd->battle_status.hp); // TODO: Won't these overwrite the current packet? if( map[sd->bl.m].hpmeter_visible )