From f51d310787dd7641edef2a4b2eb6225a35e64dfd Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Fri, 23 Oct 2020 12:31:01 +0200 Subject: [PATCH] [EDIT] removed uneccesary call to updatelobbies --- Client/Client.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Client/Client.cs b/Client/Client.cs index 50dcb4c..1499167 100644 --- a/Client/Client.cs +++ b/Client/Client.cs @@ -151,7 +151,6 @@ namespace Client Debug.WriteLine("[CLIENT] got lobby object"); int lobbyCreatedID = JSONConvert.GetLobbyID(payload); OnLobbyCreated?.Invoke(lobbyCreatedID); - OnLobbyUpdate?.Invoke(); break; case LobbyIdentifier.JOIN_SUCCESS: OnLobbyJoinSuccess?.Invoke(JSONConvert.GetLobbyJoinIsHost(payload));