Fixes IPCs thinking they need to breath. Woops. (#27737)

* Fixes IPCs thinking they need to breath. Woops.

* Update _species.dm
This commit is contained in:
1080pCat
2024-12-25 02:21:34 +00:00
committed by GitHub
parent a652f57985
commit 3937c2acf9
@@ -270,8 +270,8 @@
/datum/species/proc/breathe(mob/living/carbon/human/H)
var/datum/organ/lungs/lung = H.get_int_organ_datum(ORGAN_DATUM_LUNGS)
if(HAS_TRAIT(H, TRAIT_NOBREATH) && lung)
lung.clear_alerts(H)
if(HAS_TRAIT(H, TRAIT_NOBREATH))
lung?.clear_alerts(H)
return TRUE
////////////////