Browse Source

Follow up to 8ca20d1
* Revert code this wrong

icxbb-xx 9 năm trước cách đây
mục cha
commit
ec9c2b21c8
1 tập tin đã thay đổi với 1 bổ sung4 xóa
  1. 1 4
      src/map/clif.c

+ 1 - 4
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 )