refactor: remove unnecesary base.

This commit is contained in:
Paul Pacheco 2020-01-01 20:22:03 -06:00
parent 12c10a3896
commit bd7e27c662

View File

@ -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
{