From cf5d5794c705d9e6ec7ccf2c95f0b5c86966c247 Mon Sep 17 00:00:00 2001 From: MrStonedOne Date: Thu, 26 Feb 2015 16:54:20 -0800 Subject: [PATCH] Adds failed login message for panic bunker. --- code/modules/client/client procs.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 4bc8b7f6504..100c7cb7202 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -140,6 +140,8 @@ var/next_external_rsc = 0 if (isnum(player_age) && player_age == -1) //first connection if (config.panic_bunker && !holder && !(ckey in deadmins)) + log_access("Failed Login: [key] - New account attempting to connect during panic bunker") + message_admins("Failed Login: [key] - New account attempting to connect during panic bunker") src << "Sorry but the server is currently not accepting connections from never before seen players." del(src) return 0