From 24c3804378a72c9b3eb6fec009044c5adabd762d Mon Sep 17 00:00:00 2001 From: TheGreatKitsune <88862343+TheGreatKitsune@users.noreply.github.com> Date: Mon, 14 Jul 2025 07:39:00 -0500 Subject: [PATCH] Fix the admin sizeguns so that they can actually be set (#11186) --- code/modules/vore/resizing/sizegun_vr.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/vore/resizing/sizegun_vr.dm b/code/modules/vore/resizing/sizegun_vr.dm index af16017d91..66214c9d3c 100644 --- a/code/modules/vore/resizing/sizegun_vr.dm +++ b/code/modules/vore/resizing/sizegun_vr.dm @@ -131,6 +131,7 @@ var/size_select = tgui_input_number(user, "Put the desired size (1-600%)", "Set Size", size_set_to * 100, 600, 1) if(!size_select) return //cancelled + size_set_to = clamp((size_select/100), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS) to_chat(usr, span_notice("You set the size to [size_select]%")) /obj/item/gun/energy/sizegun/afterattack(atom/A, mob/living/user, adjacent, params)