From e24443844371c4b7cf46c4f040f8835159db7116 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 25 Jun 2018 20:21:17 -0500 Subject: [PATCH] [MIRROR] Prevents tourettes from stacking (#7253) * fixes tourettes being cancer (#38682) Prevents tourettes from stacking * Prevents tourettes from stacking --- code/datums/mutations/body.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mutations/body.dm b/code/datums/mutations/body.dm index f0da9b125f..485b7aa26d 100644 --- a/code/datums/mutations/body.dm +++ b/code/datums/mutations/body.dm @@ -101,7 +101,7 @@ text_gain_indication = "You twitch." /datum/mutation/human/tourettes/on_life(mob/living/carbon/human/owner) - if(prob(10) && owner.stat == CONSCIOUS) + if(prob(10) && owner.stat == CONSCIOUS && !owner.IsStun()) owner.Stun(200) switch(rand(1, 3)) if(1)