From ef3e6923f8fd7808c1480ddc9fd2e2cb73cf3188 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Tue, 11 Jan 2022 17:39:50 -0800 Subject: [PATCH] Added more logging for climax-in-container --- code/modules/arousal/arousal.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/arousal/arousal.dm b/code/modules/arousal/arousal.dm index a3adf0d25b..a27e2cdb74 100644 --- a/code/modules/arousal/arousal.dm +++ b/code/modules/arousal/arousal.dm @@ -74,7 +74,7 @@ if(spill && R.total_volume >= 5) R.reaction(turfing ? target : target.loc, TOUCH, 1, 0) if(!turfing) - R.trans_to(target, R.total_volume * (spill ? G.fluid_transfer_factor : 1)) + R.trans_to(target, R.total_volume * (spill ? G.fluid_transfer_factor : 1), log = TRUE) G.last_orgasmed = world.time R.clear_reagents() @@ -117,6 +117,7 @@ if(!do_after(src, mb_time, target = src) || !in_range(src, container) || !G.climaxable(src, TRUE)) return to_chat(src,"You used your [G.name] to fill [container].") + message_admins("[src] used their [G.name] to fill [container].") do_climax(fluid_source, container, G, FALSE) /mob/living/carbon/human/proc/pick_climax_genitals(silent = FALSE)