Update fatness.dm

This commit is contained in:
Metis
2025-02-02 12:13:04 -05:00
parent 0e5dde5d84
commit 844ff69bf6

View File

@@ -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)