From 9489cdc5b54bde552cd6ae33a54563dae52e2f9a Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Mon, 30 Oct 2023 12:01:40 +0100 Subject: [PATCH] Corrected empty possestion loading --- .../HumanoidControl/Scripts/Networking/HumanoidNetworking.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/HumanoidControl/Scripts/Networking/HumanoidNetworking.cs b/Runtime/HumanoidControl/Scripts/Networking/HumanoidNetworking.cs index 9b680f1..ea1aee7 100644 --- a/Runtime/HumanoidControl/Scripts/Networking/HumanoidNetworking.cs +++ b/Runtime/HumanoidControl/Scripts/Networking/HumanoidNetworking.cs @@ -287,7 +287,7 @@ namespace Passer.Humanoid { return; } #else - if (string.IsNullOrEmpty(msg.possessionLocation)) { + if (!string.IsNullOrEmpty(msg.possessionLocation)) { Debug.Log("Need to download instantiate avatar possession from " + msg.possessionLocation); remoteHumanoid.physics = msg.physics;