From 38edcdeb3bf32469c3afcb8a296383a1c77bd4bd Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Thu, 23 Feb 2017 00:05:51 -0500 Subject: [PATCH] forgot this... --- code/modules/mob/mob_helpers.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index ee7fa503e11..664d54138d4 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -362,9 +362,11 @@ var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HARM) set category = "IC" if(!resting && (world.time > rest_CD)) + rest_CD = world.time + 20 to_chat(src, "You are now resting.") StartResting() else if(resting && (world.time > rest_CD)) + rest_CD = world.time + 20 to_chat(src, "You are now getting up.") StopResting()