From bef056c034e5a9088dec98c0fd87ee88787744dd Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Sat, 24 Mar 2018 05:39:35 -0700 Subject: [PATCH] why did we have that there --- modular_citadel/code/modules/arousal/arousal.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_citadel/code/modules/arousal/arousal.dm b/modular_citadel/code/modules/arousal/arousal.dm index 5ffb6dc5cf..7d25499c7c 100644 --- a/modular_citadel/code/modules/arousal/arousal.dm +++ b/modular_citadel/code/modules/arousal/arousal.dm @@ -33,12 +33,12 @@ /mob/living/carbon/handle_arousal() - if(canbearoused && dna && client) + if(canbearoused && dna) var/datum/species/S S = dna.species - if(S && SSmobs.times_fired%36==2 && getArousalLoss() < max_arousal)//Totally stolen from breathing code. Do this every 36 ticks. + if(S && !(SSmobs.times_fired % 36) && getArousalLoss() < max_arousal)//Totally stolen from breathing code. Do this every 36 ticks. adjustArousalLoss(arousal_rate * S.arousal_gain_rate) - if(dna.features["exhibitionist"]) + if(dna.features["exhibitionist"] && client) var/amt_nude = 0 if(is_chest_exposed() && (gender == FEMALE || getorganslot("breasts"))) amt_nude++