From 4aff0cddeee87d5eb503628e33ebd27f35b7c78e Mon Sep 17 00:00:00 2001 From: ATH1909 <42606352+ATH1909@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:43:09 -0400 Subject: [PATCH] self-respiration grants its nobreath trait at stage 4 again (#70233) >:( --- code/datums/diseases/advance/symptoms/oxygen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/diseases/advance/symptoms/oxygen.dm b/code/datums/diseases/advance/symptoms/oxygen.dm index 15cdb2b8b1f..630f2e2d7fb 100644 --- a/code/datums/diseases/advance/symptoms/oxygen.dm +++ b/code/datums/diseases/advance/symptoms/oxygen.dm @@ -50,7 +50,7 @@ if(!.) return FALSE var/mob/living/carbon/M = A.affected_mob - if(A.stage > 4) + if(A.stage >= 4) ADD_TRAIT(M, TRAIT_NOBREATH, DISEASE_TRAIT) else REMOVE_TRAIT(M, TRAIT_NOBREATH, DISEASE_TRAIT)