From 175a4748a1c4d9480c0ebcdd5641bcf8156439c1 Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Wed, 14 Sep 2022 11:05:41 -0400 Subject: [PATCH] Merge pull request #13727 from Heroman3003/spicefix Fixes runtime with admin spice --- code/modules/admin/verbs/adminhelp_vr.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/adminhelp_vr.dm b/code/modules/admin/verbs/adminhelp_vr.dm index 9d66223b66..d6bdb37f21 100644 --- a/code/modules/admin/verbs/adminhelp_vr.dm +++ b/code/modules/admin/verbs/adminhelp_vr.dm @@ -34,5 +34,6 @@ //if they requested spice, then remove spice verb temporarily to prevent spamming usr.verbs -= /client/verb/adminspice - spawn(6000) - usr.verbs += /client/verb/adminspice // 10 minute cool-down for spice request + spawn(10 MINUTES) + if(usr) // In case we left in the 10 minute cooldown + usr.verbs += /client/verb/adminspice // 10 minute cool-down for spice request