aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 7a5e30db..0a5d85ae 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -306,7 +306,7 @@ func set_tile(tile: Vector2i, kind = null, neighbors = null):
func update_center():
if is_joined:
return
- if Input.get_vector("left", "right", "forward", "backwards").normalized().length() > .1:
+ if Input.get_vector("left", "right", "forwards", "backwards").normalized().length() > .1:
spectating_mode = SpectatingMode.FREE
elif spectating_mode == SpectatingMode.FREE and Input.is_action_just_pressed("reset"):
spectating_mode = SpectatingMode.CENTER