From 9c088cee39414f225e96f590cd7dec159bea789f Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 26 Feb 2022 20:18:10 -0600 Subject: [PATCH] Fixes tails being able to wag your tail when stunned --- code/modules/mob/living/carbon/human/species.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 8fa5238631cc..1da1e678f356 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1990,6 +1990,8 @@ GLOBAL_LIST_EMPTY(mentor_races) //////////////// /datum/species/proc/can_wag_tail(mob/living/carbon/human/H) + if(H.IsParalyzed() || H.IsStun()) + return FALSE return (H.getorganslot(ORGAN_SLOT_TAIL)) /datum/species/proc/is_wagging_tail(mob/living/carbon/human/H)