mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user