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.")