slight bug to stop proteans from resizing to whatever they want in blob form

that I accidentally introduced in that last batch of updates
This commit is contained in:
Seris02
2023-02-05 23:47:32 +08:00
parent 484b164b64
commit feaaa59bd4

View File

@@ -65,7 +65,7 @@
/atom/movable/proc/has_large_resize_bounds()
var/area/A = get_area(src) //Get the atom's area to check for size limit.
return A ? !A.limit_mob_size : TRUE //CHOMPEdit
return A ? !A.limit_mob_size : FALSE //CHOMPEdit
/proc/is_extreme_size(size)
return (size < RESIZE_MINIMUM || size > RESIZE_MAXIMUM)