From 1e1a03c9d8f39b12e8cdf0dca3d59aea2195e00a Mon Sep 17 00:00:00 2001 From: RaidMax Date: Sat, 28 Dec 2019 15:40:55 -0600 Subject: [PATCH] fix retarded method that wasn't returning when it should have --- Application/IW4MServer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Application/IW4MServer.cs b/Application/IW4MServer.cs index 680f5ca8..93a71f6c 100644 --- a/Application/IW4MServer.cs +++ b/Application/IW4MServer.cs @@ -569,6 +569,7 @@ namespace IW4MAdmin if (client == null) { Logger.WriteWarning($"{origin} expected to exist in client list for update, but they do not"); + return; } client.Ping = origin.Ping;