From 901dd942530148921a822a2df83f9427ae79ab02 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 13 Jun 2018 22:27:19 -0400 Subject: [PATCH] Corrects climax cooldown timer message, makes relieve message pronounsensitive (#7086) --- modular_citadel/code/modules/arousal/arousal.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/arousal/arousal.dm b/modular_citadel/code/modules/arousal/arousal.dm index fa8f3f6ae1..bcebbde032 100644 --- a/modular_citadel/code/modules/arousal/arousal.dm +++ b/modular_citadel/code/modules/arousal/arousal.dm @@ -171,7 +171,7 @@ src.visible_message("[src] starts masturbating!", \ "You start masturbating.") if(do_after(src, 30, target = src)) - src.visible_message("[src] relieves themself!", \ + src.visible_message("[src] relieves [p_them()]self!", \ "You have relieved yourself.") setArousalLoss(min_arousal) /* @@ -390,7 +390,7 @@ /mob/living/carbon/human/mob_climax(forced_climax=FALSE) //Forced is instead of the other proc, makes you cum if you have the tools for it, ignoring restraints if(mb_cd_timer > world.time) if(!forced_climax) //Don't spam the message to the victim if forced to come too fast - to_chat(src, "You need to wait [round((mb_cd_timer - world.time)/(20))] seconds before you can do that again!") + to_chat(src, "You need to wait [DisplayTimeText((mb_cd_timer - world.time), TRUE)] before you can do that again!") return mb_cd_timer = (world.time + mb_cd_length)