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()