From ed0c4f334ee3972da06e14fb266615d0aa5153da Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Sun, 10 Sep 2023 17:24:18 +0200 Subject: [PATCH] Hmmmm not so sure (#22281) --- code/modules/surgery/organs/pain.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/surgery/organs/pain.dm b/code/modules/surgery/organs/pain.dm index 007afbed201..34f80df9147 100644 --- a/code/modules/surgery/organs/pain.dm +++ b/code/modules/surgery/organs/pain.dm @@ -48,10 +48,10 @@ var/msg = "[message]" // Anti message spam checks - if(msg && ((msg != last_pain_message) || (world.time >= next_pain_time))) + if(msg && ((msg != last_pain_message) && (world.time >= next_pain_time))) last_pain_message = msg to_chat(src, msg) - next_pain_time = world.time + 100 + next_pain_time = world.time + 10 SECONDS /mob/living/carbon/human/proc/handle_pain() // not when sleeping