From 885181d64c0237e71097b0507bc2b4735637e313 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sun, 23 Apr 2017 08:22:05 -0700 Subject: [PATCH] fixes the server (#26489) --- 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 576e7baa869..f1e0f73afc2 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -197,7 +197,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) )