mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
refactor: remove unnecesary base.
This commit is contained in:
parent
12c10a3896
commit
bd7e27c662
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user