From 7bb8385d502b580bcafcdbbe3093700ca987c2bd Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Tue, 5 Aug 2025 04:09:34 -0400 Subject: [PATCH] Check for no breathing mutation (#18151) Co-authored-by: Cameron Lennox --- code/modules/mob/living/carbon/carbon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 33b4bc7e38..286dd39314 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -428,7 +428,7 @@ return !(species.flags & NO_PAIN) /mob/living/carbon/needs_to_breathe() - if(does_not_breathe) + if(does_not_breathe || (mNobreath in mutations)) return FALSE return ..()