Fixed an issue causing Hosts to not get isLocalPlayer = true

This commit is contained in:
Albin Corén 2018-01-07 05:54:08 +01:00
parent 0a6e22c95e
commit db1e200494

View File

@ -19,7 +19,7 @@ namespace MLAPI
{
get
{
return OwnerClientId == NetworkingManager.singleton.MyClientId;
return IsPlayerObject && (OwnerClientId == NetworkingManager.singleton.MyClientId || (OwnerClientId == -1 && NetworkingManager.singleton.isHost));
}
}