No Lung Pop (#9337)

Drowning in the pool no longer causes your lungs to pop.
    You will no longer gasp for air when submerged, instead you will flail violently.
This commit is contained in:
Geeves
2020-07-12 17:19:04 +03:00
committed by GitHub
parent 1618c564a8
commit 4a3fcd288a
6 changed files with 28 additions and 5 deletions
@@ -189,4 +189,9 @@
/mob/living/carbon/human/proc/has_hearing_aid()
if(istype(l_ear, /obj/item/device/hearing_aid) || istype(r_ear, /obj/item/device/hearing_aid))
return TRUE
return FALSE
/mob/living/carbon/human/proc/is_submerged()
if(lying && istype(loc, /turf/simulated/floor/beach/water)) // replace this when we port fluids
return TRUE
return FALSE