From add141980987f9ce314d03018962f50ffd08ee71 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Apr 2017 10:22:18 -0500 Subject: [PATCH] fixes the server --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 6d88989b3d..1e8e101ff2 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -216,7 +216,7 @@ GLOBAL_LIST(external_rsc_urls) var/alert_mob_dupe_login = FALSE if(config.log_access) for(var/I in GLOB.clients) - if(I == src) + if(!I || I == src) continue var/client/C = I if(C.key && (C.key != key) )