Merge pull request #12729 from Citadel-Station-13/silicons-patch-20

whooshing now happens at pressure difference * 2.5% probability instead of people hearing space wind from someone exhaling next to them
This commit is contained in:
Lin
2020-07-11 15:47:03 -05:00
committed by GitHub
@@ -36,8 +36,9 @@
return FALSE
return ..()
/mob/living/carbon/human/experience_pressure_difference()
playsound(src, 'sound/effects/space_wind.ogg', 50, 1)
/mob/living/carbon/human/experience_pressure_difference(pressure_difference, direction, pressure_resistance_prob_delta = 0, throw_target)
if(prob(pressure_difference * 2.5))
playsound(src, 'sound/effects/space_wind.ogg', 50, 1)
if(shoes && istype(shoes, /obj/item/clothing))
var/obj/item/clothing/S = shoes
if (S.clothing_flags & NOSLIP)