From f444e8b4f706bd00e085161cfb6977be7f608936 Mon Sep 17 00:00:00 2001 From: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Date: Fri, 8 Apr 2022 23:37:38 +0100 Subject: [PATCH] Removes a redundant loop in client/New() (#17589) --- code/modules/client/client_procs.dm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 5365ad33676..3dec3096c21 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -381,12 +381,6 @@ Master.UpdateTickRate() - // Check total playercount - var/playercount = 0 - for(var/mob/M in GLOB.player_list) - if(M.client) - playercount += 1 - // Tell clients about active testmerges if(world.TgsAvailable() && length(GLOB.revision_info.testmerges)) to_chat(src, GLOB.revision_info.get_testmerge_chatmessage(TRUE))