From 84be287740af25fc8b7a071573197758707f89f6 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Sun, 13 Feb 2022 07:11:22 -0500 Subject: [PATCH] Admin resize adjustments Caps it at 50 and allows negative values --- code/modules/admin/verbs/resize.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/resize.dm b/code/modules/admin/verbs/resize.dm index 140ce75393a..058955799e0 100644 --- a/code/modules/admin/verbs/resize.dm +++ b/code/modules/admin/verbs/resize.dm @@ -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)