From e28d7077271dd828acb972e84e43f5749719fc52 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Fri, 1 Mar 2019 02:43:10 -0800 Subject: [PATCH] Update panicbunker.dm --- code/modules/admin/verbs/panicbunker.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/panicbunker.dm b/code/modules/admin/verbs/panicbunker.dm index 175ab45aeb..ab3aeb4ba5 100644 --- a/code/modules/admin/verbs/panicbunker.dm +++ b/code/modules/admin/verbs/panicbunker.dm @@ -22,7 +22,7 @@ to_chat(usr, "The Database is not enabled!") return - GLOB.bunker_passthrough |= ckeytobypass + GLOB.bunker_passthrough |= ckey(ckeytobypass) log_admin("[key_name(usr)] has added [ckeytobypass] to the current round's bunker bypass list.") message_admins("[key_name(usr)] has added [ckeytobypass] to the current round's bunker bypass list.") @@ -34,7 +34,7 @@ to_chat(usr, "The Database is not enabled!") return - GLOB.bunker_passthrough -= ckeytobypass + GLOB.bunker_passthrough -= ckey(ckeytobypass) log_admin("[key_name(usr)] has removed [ckeytobypass] from the current round's bunker bypass list.") message_admins("[key_name(usr)] has removed [ckeytobypass] from the current round's bunker bypass list.")