diff --git a/Assets/Mirror/Runtime/NetworkServer.cs b/Assets/Mirror/Runtime/NetworkServer.cs index 9145d129d..3ac2be3ec 100644 --- a/Assets/Mirror/Runtime/NetworkServer.cs +++ b/Assets/Mirror/Runtime/NetworkServer.cs @@ -600,15 +600,10 @@ public static bool AddPlayerForConnection(NetworkConnection conn, GameObject pla { identity.assetId = assetId; } - return InternalAddPlayerForConnection(conn, player); + return AddPlayerForConnection(conn, player); } public static bool AddPlayerForConnection(NetworkConnection conn, GameObject player) - { - return InternalAddPlayerForConnection(conn, player); - } - - internal static bool InternalAddPlayerForConnection(NetworkConnection conn, GameObject player) { NetworkIdentity identity = player.GetComponent(); if (identity == null)