From ddfd028e8425954ca2b17ef09633ff0b0534e6c2 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 25 Oct 2023 04:25:08 +0300 Subject: [PATCH] Fixes bellysprites counting nonstandard item sizes as planets. (#7127) --- code/modules/vore/eating/belly_obj_ch.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_obj_ch.dm b/code/modules/vore/eating/belly_obj_ch.dm index 21f6e21fbe..fb0a5d4d93 100644 --- a/code/modules/vore/eating/belly_obj_ch.dm +++ b/code/modules/vore/eating/belly_obj_ch.dm @@ -165,7 +165,7 @@ else if(I.w_class == ITEMSIZE_HUGE) fullness_to_add = ITEMSIZE_COST_HUGE else - fullness_to_add = ITEMSIZE_COST_NO_CONTAINER + fullness_to_add = I.w_class fullness_to_add /= 32 belly_fullness += fullness_to_add * item_multiplier belly_fullness *= size_factor_for_sprite