diff --git a/src/game/TetrisGameManager.py b/src/game/TetrisGameManager.py index 8a51988..94af1fc 100644 --- a/src/game/TetrisGameManager.py +++ b/src/game/TetrisGameManager.py @@ -31,7 +31,7 @@ def __init__(self, board: Board): self.currentTime = int(round(t.time() * 1000)) self.switcher = { - Key.f1: Action.SOFT_DROP, + Key.down: Action.SOFT_DROP, Key.left: Action.MOVE_LEFT, Key.right: Action.MOVE_RIGHT, Key.space: Action.DROP,