Buffs Fall Damage (#2758)

Fixes an issue where damage to the chest would never be applied.
Nerfs Weakened.
This commit is contained in:
LordFowl
2017-06-18 17:43:42 -04:00
committed by skull132
parent 324dba97dc
commit 8cf51e60e0

View File

@@ -414,9 +414,9 @@
visible_message("\The [src] falls and lands on \the [loc]!",
"With a loud thud, you land on \the [loc]!", "You hear a thud!")
apply_damage(damage - limb_damage, "chest")
apply_damage(damage - limb_damage, BRUTE, "chest")
Weaken(rand(damage/2, damage))
Weaken(rand(damage/4, damage/2))
updatehealth()