From 04e445cbfee26a343cdf9a73535e50a2e4c770ec Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Mon, 6 Mar 2017 03:15:54 -0800 Subject: [PATCH] Update status_procs.dm (#24686) --- code/modules/mob/living/carbon/human/status_procs.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/status_procs.dm b/code/modules/mob/living/carbon/human/status_procs.dm index 5ee8591fc62..4e80477e6bc 100644 --- a/code/modules/mob/living/carbon/human/status_procs.dm +++ b/code/modules/mob/living/carbon/human/status_procs.dm @@ -6,7 +6,11 @@ /mob/living/carbon/human/Weaken(amount, updating = 1, ignore_canstun = 0) amount = dna.species.spec_stun(src,amount) return ..() - + +/mob/living/carbon/human/Paralyse(amount, updating = 1, ignore_canstun = 0) + amount = dna.species.spec_stun(src,amount) + return ..() + /mob/living/carbon/human/cure_husk() . = ..() if(.) @@ -15,4 +19,4 @@ /mob/living/carbon/human/become_husk() . = ..() if(.) - update_hair() \ No newline at end of file + update_hair()