Explorar el Código

Overed Boost now decreases homun's hunger level by half (#4218)

Fixes #4217
yoonjunho1994 hace 5 años
padre
commit
77fa9dbcbe
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/map/status.cpp

+ 1 - 1
src/map/status.cpp

@@ -12583,7 +12583,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const
 						struct homun_data *hd = BL_CAST(BL_HOM,bl);
 
 						if( hd )
-							hd->homunculus.hunger = max(1,hd->homunculus.hunger - 50);
+							hd->homunculus.hunger = max(1,hd->homunculus.hunger / 2);
 					}
 					break;
 				case BL_PC: