aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-06-16 21:48:37 +0200
committertpart <tpart120@proton.me>2025-06-16 21:48:48 +0200
commit4f3d157eb6cb5cdac1ccee5fc2ee5fa00bcd0869 (patch)
tree2d1616ba056cad3e0d973c1a35108d968ee7abed
parent6ecc032c0868d7d2901f4b95ec33c373886f6fc7 (diff)
downloadhurrycurry-4f3d157eb6cb5cdac1ccee5fc2ee5fa00bcd0869.tar
hurrycurry-4f3d157eb6cb5cdac1ccee5fc2ee5fa00bcd0869.tar.bz2
hurrycurry-4f3d157eb6cb5cdac1ccee5fc2ee5fa00bcd0869.tar.zst
Fix #136
-rw-r--r--client/player/player.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/player/player.gd b/client/player/player.gd
index cf8d3b78..265c1d65 100644
--- a/client/player/player.gd
+++ b/client/player/player.gd
@@ -67,6 +67,7 @@ func _init(_id: int, name_: String, pos: Vector2, character_style_: Dictionary,
movement_base.add_child(character)
position_ = pos
position_anim = pos
+ movement_base.position = Vector3(pos.x, 0, pos.y)
if Global.hand_count == 1:
var center = Node3D.new()