From 9ba34b32e62a2fb58bf785d65a3312aa462408cf Mon Sep 17 00:00:00 2001 From: Xhuis Date: Sat, 27 Dec 2014 00:17:57 -0500 Subject: [PATCH] Fixes return() borking the code --- code/modules/mob/living/carbon/carbon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 9753d3271ab..e7fd0006859 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -88,12 +88,12 @@ ) src.jitteriness += 1000 //High numbers for violent convulsions src.stuttering += 2 - return shock_damage Stun(2) spawn(20) src.jitteriness -= 990 //Still jittery, but vastly less Stun(3) Weaken(3) + return shock_damage /mob/living/carbon/swap_hand()