summaryrefslogtreecommitdiff
path: root/client/game.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/game.gd')
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 0a5d85ae..09027d18 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -341,7 +341,7 @@ func spectate_center():
$Center.position = new_center
func spectate_free():
- var direction := Input.get_vector("left", "right", "forward", "backwards")
+ var direction := Input.get_vector("left", "right", "forwards", "backwards")
direction = direction.rotated(-camera.angle_target)
$Center.position += Vector3(
direction.x,