Adds the dust anomaly (#19228)

* Dust anomaly

* FILTH

* Check for simulated turf instead
This commit is contained in:
Guti
2026-02-27 01:42:24 -05:00
committed by GitHub
parent 0d1a958de4
commit 1cebb2f821
12 changed files with 115 additions and 0 deletions
@@ -1476,6 +1476,13 @@
return 1
return 0
/mob/living/carbon/human/has_lungs()
if(internal_organs_by_name[O_LUNGS])
var/obj/item/organ/lungs = internal_organs_by_name[O_LUNGS]
if(lungs && istype(lungs) && !(lungs.status & ORGAN_CUT_AWAY))
return TRUE
return FALSE
/mob/living/carbon/human/slip(var/slipped_on, stun_duration=8)
var/list/equipment = list(src.w_uniform,src.wear_suit,src.shoes)
var/footcoverage_check = FALSE
+3
View File
@@ -905,6 +905,9 @@
/mob/living/proc/has_eyes()
return 1
/mob/living/proc/has_lungs()
return TRUE
/mob/living/proc/get_restraining_bolt()
var/obj/item/implant/restrainingbolt/RB = locate() in src
if(RB)