From 52e20cdadf8471a3d96a02c0e823dc3c130d9ed1 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 14 Mar 2020 20:04:05 -0700 Subject: [PATCH] Made server votes not subject to the cooldown (#11464) --- code/controllers/subsystem/vote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index ac0acfb61d..e7e5754f6b 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -443,7 +443,7 @@ SUBSYSTEM_DEF(vote) var/admin = FALSE var/ckey = ckey(initiator_key) - if(GLOB.admin_datums[ckey]) + if(GLOB.admin_datums[ckey] || initiator_key == "server") admin = TRUE if(next_allowed_time > world.time && !admin)