From 99367b38eb8b1fc6ff1b26ff55a44c5a96a65e46 Mon Sep 17 00:00:00 2001 From: Eearslya Sleiarion Date: Sun, 18 Sep 2016 19:56:05 -0700 Subject: [PATCH] Cyborgs can no longer use OOC resize (#566) --- code/modules/vore/resizing/resize_vr.dm | 3 +++ 1 file changed, 3 insertions(+) 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])