Admin resize adjustments

Caps it at 50 and allows negative values
This commit is contained in:
VerySoft
2022-02-13 07:11:22 -05:00
parent ad214b6666
commit 84be287740
+1 -1
View File
@@ -9,7 +9,7 @@
if(!size_multiplier)
return //cancelled
size_multiplier = clamp(size_multiplier, 0.01, 1000)
size_multiplier = clamp(size_multiplier, -50, 50) //VOREStation Edit - being able to make people upside down is fun. Also 1000 is way, WAY too big. Honestly 50 is too big but at least you can see 50 and it doesn't break the rendering.
var/can_be_big = L.has_large_resize_bounds()
var/very_big = is_extreme_size(size_multiplier)