From 26800b1ca7dfe7d39253289c59cba233862d4d35 Mon Sep 17 00:00:00 2001 From: PintTheDragon Date: Tue, 20 Oct 2020 03:18:14 -0700 Subject: [PATCH] Don't handle the ID --- SCPStats/EventHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCPStats/EventHandler.cs b/SCPStats/EventHandler.cs index 53fbd0d..d506c74 100644 --- a/SCPStats/EventHandler.cs +++ b/SCPStats/EventHandler.cs @@ -87,7 +87,7 @@ internal static void OnRoundStart() foreach (var player in Players) { - if (Player.List.All(p => HandleId(p.RawUserId) != player)) + if (Player.List.All(p => p.RawUserId != player)) { Players.Remove(player); }