From c6ba7be572781ca2878187a2b44bd8bc768dcd6e Mon Sep 17 00:00:00 2001 From: QuickLode <63271983+QuickLode@users.noreply.github.com> Date: Mon, 9 Oct 2023 17:42:59 -0700 Subject: [PATCH] forest changes, 3rd one causes undefined var species.flag --- code/modules/mob/living/blood.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm index 0dd2e200c144..0ab40762f06c 100644 --- a/code/modules/mob/living/blood.dm +++ b/code/modules/mob/living/blood.dm @@ -7,7 +7,7 @@ // Takes care blood loss and regeneration /mob/living/carbon/human/handle_blood() - if(species.flags & NO_BLOOD && !(species.flags & IS_SYNTHETIC)) + if((species.flags & NO_BLOOD) && !(species.flags & IS_SYNTHETIC)) return if(stat != DEAD && bodytemperature >= 170) //Dead or cryosleep people do not pump the blood. @@ -101,7 +101,7 @@ /mob/living/carbon/human/drip(amt) if(in_stasis) // stasis now stops bloodloss return - if(species.flags & NO_BLOOD && !(species.flags & IS_SYNTHETIC)) + if((species.flags & NO_BLOOD) && !(species.flags & IS_SYNTHETIC)) return ..()