diff --git a/GainStation13/code/mechanics/fatness.dm b/GainStation13/code/mechanics/fatness.dm index de09afe0f4..c2d2ec4c33 100644 --- a/GainStation13/code/mechanics/fatness.dm +++ b/GainStation13/code/mechanics/fatness.dm @@ -216,9 +216,9 @@ GLOBAL_LIST_INIT(uncapped_resize_areas, list(/area/command/bridge, /area/mainten var/xwg_size = sqrt(fatness/FATNESS_LEVEL_BLOB) xwg_size = min(xwg_size, RESIZE_MACRO) xwg_size = max(xwg_size, custom_body_size) - if(xwg_size > RESIZE_BIG) //check if the size needs capping otherwise don't bother searching the list + if(xwg_size > RESIZE_A_HUGEBIG) //check if the size needs capping otherwise don't bother searching the list if(!is_type_in_list(get_area(src), GLOB.uncapped_resize_areas)) //if the area is not int the uncapped whitelist and new size is over the cap - xwg_size = RESIZE_BIG + xwg_size = RESIZE_A_HUGEBIG resize(xwg_size) /proc/get_fatness_level_name(fatness_amount)