From 6e5a7f3d614e3f22e1771ad812c383ed32ce1728 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sat, 6 Jan 2024 17:23:46 +0200 Subject: [PATCH] tweak movement delay --- src/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/config.py b/src/utils/config.py index 9c6ea1b..72e9727 100644 --- a/src/utils/config.py +++ b/src/utils/config.py @@ -22,7 +22,7 @@ class Game: pos: Vec2 = Vec2(padding, padding) offset: Vec2 = Vec2(columns // 2, -1) initial_speed: float | int = 300 - movment_delay: int = 100 + movment_delay: int = 150 rotation_delay: int = 200 drop_delay: int = 200 score: dict[int, int] = {1: 40, 2: 100, 3: 300, 4: 1200}