fixes arousalloss not being a valid damage type for humans (#5654)

* goddamnit you broke arousal

* Update species.dm
This commit is contained in:
kevinz000
2018-02-22 10:00:51 -08:00
committed by Poojawa
parent c6ad3899d4
commit 7e5057b99e
@@ -1591,6 +1591,8 @@ GLOBAL_LIST_EMPTY(roundstart_races)
H.adjustStaminaLoss(damage * hit_percent * H.physiology.stamina_mod)
if(BRAIN)
H.adjustBrainLoss(damage * hit_percent * H.physiology.brain_mod)
if(AROUSAL) //Citadel edit - arousal
H.adjustArousalLoss(damage * hit_percent)
return 1
/datum/species/proc/on_hit(obj/item/projectile/P, mob/living/carbon/human/H)