Fixed typos (#604)

This commit is contained in:
MrGadget 2019-03-16 13:57:17 -04:00 committed by Paul Pacheco
parent 54c964c232
commit d09c7cddc0

View File

@ -894,12 +894,12 @@ public bool AssignClientAuthority(NetworkConnection conn)
{
if (!isServer)
{
Debug.LogError("AssignClientAuthority can only be call on the server for spawned objects.");
Debug.LogError("AssignClientAuthority can only be called on the server for spawned objects.");
return false;
}
if (!localPlayerAuthority)
{
Debug.LogError("AssignClientAuthority can only be used for NetworkIdentity component with LocalPlayerAuthority set.");
Debug.LogError("AssignClientAuthority can only be used for NetworkIdentity components with LocalPlayerAuthority set.");
return false;
}