diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm index 7b7304b8460..8991e2351da 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm @@ -285,9 +285,8 @@ user.resize(size_factor) else to_chat(user,"That size change would cost [cost] steel, which you don't have.") - return //Sizing down (or not at all) - if(cost <= 0) + else if(cost <= 0) cost = abs(cost) var/actually_added = refactory.add_stored_material("steel",cost) user.resize(size_factor)