From 77fa9dbcbe6ad702ca5549f4ae2fba5983c4c9d0 Mon Sep 17 00:00:00 2001 From: yoonjunho1994 <51434423+yoonjunho1994@users.noreply.github.com> Date: Sun, 26 Jan 2020 22:37:11 +0700 Subject: [PATCH] Overed Boost now decreases homun's hunger level by half (#4218) Fixes #4217 --- src/map/status.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/status.cpp b/src/map/status.cpp index f7d07733d5..c466e73e13 100644 --- a/src/map/status.cpp +++ b/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: