Alters tenebrosity's fallsound to work with the improved fall stuff

Conflicts:
	code/modules/mob/living/carbon/human/human_damage.dm
This commit is contained in:
Vincent
2014-01-24 00:18:52 -05:00
committed by ZomgPonies
parent 7b58cc04b2
commit 49e8e5a7f8
@@ -94,12 +94,6 @@
O.unmutate()
src << "<span class = 'notice'>Your [O.display_name] is shaped normally again.</span>"
/mob/living/carbon/human/update_canmove()
var/old_lying = lying
. = ..()
if(lying && !old_lying && !resting && !buckled) // fell down
playsound(loc, "bodyfall", 50, 1, -1)
////////////////////////////////////////////
//Returns a list of damaged organs
@@ -272,6 +266,8 @@
// incredibly important stuff follows
/mob/living/carbon/human/fall(var/forced)
..()
if(forced)
playsound(loc, "bodyfall", 50, 1, -1)
if(head)
var/multiplier = 1
if(stat || (status_flags & FAKEDEATH))