Fix player-markers not updating the world correctly

This commit is contained in:
Blue (Lukas Rieger) 2020-08-16 17:48:14 +02:00
parent 17a94bcb2c
commit 2b2cf2da4b
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ export default class PlayerMarkerSet {
marker.nowOnline = true;
marker.position = new Vector3(player.position.x, player.position.y + 1.5, player.position.z);
marker.world = player.world;
marker.updatePosition();
}