mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 07:28:53 +01:00
Adds the dust anomaly (#19228)
* Dust anomaly * FILTH * Check for simulated turf instead
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user