diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 06daf449ca..7110d2d202 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -70,6 +70,9 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 Do not abuse their existence outside of ERP scenes where they apply, \ or reverting OOCly unwanted changes like someone lolshooting the crew with a shrink ray. -Ace" + if (!istype(src,/mob/living/carbon/human)) + src << "Only organic creatures can use this command!" + return var/size_name = input(nagmessage, "Pick a Size") in player_sizes_list if (size_name && player_sizes_list[size_name]) src.resize(player_sizes_list[size_name])