From 558e1d875465d536d9675db68c48d1eefc0f2442 Mon Sep 17 00:00:00 2001 From: vis2k Date: Sun, 24 Mar 2019 20:14:39 +0100 Subject: [PATCH] NetworkClient.SetHandlers made static --- Assets/Mirror/Runtime/NetworkClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Runtime/NetworkClient.cs b/Assets/Mirror/Runtime/NetworkClient.cs index 35dfb4357..e8905c777 100644 --- a/Assets/Mirror/Runtime/NetworkClient.cs +++ b/Assets/Mirror/Runtime/NetworkClient.cs @@ -46,7 +46,7 @@ public NetworkClient() singleton = this; } - internal void SetHandlers(NetworkConnection conn) + internal static void SetHandlers(NetworkConnection conn) { conn.SetHandlers(handlers); }