From 6707d1b2fdf62c41d24a99c9ad2109acf2348ac6 Mon Sep 17 00:00:00 2001 From: Sishen Date: Mon, 27 May 2019 23:24:52 -0400 Subject: [PATCH] Update species.dm --- code/modules/mob/living/carbon/human/species.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 5f956e361f..792d865a59 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1727,8 +1727,8 @@ GLOBAL_LIST_EMPTY(roundstart_races) if(BP) if(damage > 0 ? BP.receive_damage(damage * hit_percent * brutemod * H.physiology.brute_mod, 0) : BP.heal_damage(abs(damage * hit_percent * brutemod * H.physiology.brute_mod), 0)) H.update_damage_overlays() - if (H.has_trait(TRAIT_MASO)) - (H.adjustArousalLoss(damage * brutemod * H.physiology.brute_mod)) + if H.has_trait(TRAIT_MASO) + H.adjustArousalLoss(damage * brutemod * H.physiology.brute_mod) if (H.getArousalLoss() >= 100 && ishuman(H) && H.has_dna()) H.mob_climax(forced_climax=TRUE)