Corrected empty possestion loading

This commit is contained in:
Pascal Serrarens 2023-10-30 12:01:40 +01:00
parent 46da2dfe1b
commit 9489cdc5b5

View File

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