diff --git a/Assets/Mirror/Authenticators/BasicAuthenticator.cs b/Assets/Mirror/Authenticators/BasicAuthenticator.cs index 0edc7dff4..6e3c3f617 100644 --- a/Assets/Mirror/Authenticators/BasicAuthenticator.cs +++ b/Assets/Mirror/Authenticators/BasicAuthenticator.cs @@ -71,7 +71,7 @@ public void OnAuthRequestMessage(NetworkConnection conn, AuthRequestMessage msg) conn.Send(authResponseMessage); // Invoke the event to complete a successful authentication - base.OnServerAuthenticated.Invoke(conn); + OnServerAuthenticated.Invoke(conn); } else { @@ -105,7 +105,7 @@ public void OnAuthResponseMessage(NetworkConnection conn, AuthResponseMessage ms Debug.LogFormat("Authentication Response: {0}", msg.message); // Invoke the event to complete a successful authentication - base.OnClientAuthenticated.Invoke(conn); + OnClientAuthenticated.Invoke(conn); } else {