From c84dba85dd0066c2d1490c29d10e273e92681ea8 Mon Sep 17 00:00:00 2001 From: Putnam Date: Thu, 18 Feb 2021 21:31:25 -0800 Subject: [PATCH] should also log climaxes (all of them) --- code/modules/arousal/arousal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/arousal/arousal.dm b/code/modules/arousal/arousal.dm index d800d12501..b905db0b4e 100644 --- a/code/modules/arousal/arousal.dm +++ b/code/modules/arousal/arousal.dm @@ -66,6 +66,7 @@ return var/turfing = isturf(target) G.generate_fluid(R) + log_message("Climaxed using [G] with [target]", LOG_EMOTE) if(spill && R.total_volume >= 5) R.reaction(turfing ? target : target.loc, TOUCH, 1, 0) if(!turfing) @@ -275,7 +276,6 @@ var/obj/item/reagent_containers/fluid_container = pick_climax_container() if(fluid_container && available_rosie_palms(TRUE, /obj/item/reagent_containers)) mob_fill_container(picked_organ, fluid_container) - mb_cd_timer = world.time + mb_cd_length /mob/living/carbon/human/verb/climax_verb()