From 3f4e0a7840792f52e2ea9ce23ab4aaeb6e32f00d Mon Sep 17 00:00:00 2001 From: Shadow Date: Sat, 21 Dec 2019 01:16:33 -0600 Subject: [PATCH 1/2] No Scare --- code/modules/mob/living/carbon/human/species/station/seromi.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index beeba0fd45..b8af0a346d 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -145,6 +145,9 @@ // If they're dead or unconcious they're a bit beyond this kind of thing. if(H.stat) return + // Vored? Not gonna get frightened. + if(ishuman(H.loc) + return // No point processing if we're already stressing the hell out. if(H.hallucination >= hallucination_cap && H.loneliness_stage >= warning_cap) return From ff0ff96a84897727f58540a890a2adfd2403e88e Mon Sep 17 00:00:00 2001 From: Shadow Date: Sat, 21 Dec 2019 02:17:25 -0600 Subject: [PATCH 2/2] Teshari Fix Fixed! --- code/modules/mob/living/carbon/human/species/station/seromi.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index b8af0a346d..91538f25ba 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -146,7 +146,7 @@ if(H.stat) return // Vored? Not gonna get frightened. - if(ishuman(H.loc) + if(ishuman(H.loc)) return // No point processing if we're already stressing the hell out. if(H.hallucination >= hallucination_cap && H.loneliness_stage >= warning_cap)