Skip to content

Commit

Permalink
Cyborgs can no longer use OOC resize (PolarisSS13#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eearslya authored and SpadesNeil committed Sep 19, 2016
1 parent 62243ec commit 99367b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/vore/resizing/resize_vr.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 << "<span class='warning'>Only organic creatures can use this command!</span>"
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])
Expand Down

0 comments on commit 99367b3

Please sign in to comment.