From 3776c2156327021e03ff524e6b59bb86eb64865a Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Tue, 10 Apr 2018 22:16:36 -0400 Subject: [PATCH] Fix another protean bug (resizing message) --- .../carbon/human/species/station/protean_vr/protean_powers.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)