From 773aa5c7656f05a56ffb0874a6d0514e851f736a Mon Sep 17 00:00:00 2001 From: Thaloria Date: Mon, 24 Jul 2023 13:33:41 +0200 Subject: [PATCH] added async stone detection thread --- tetromino.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tetromino.py b/tetromino.py index 677bf06..4a6c411 100644 --- a/tetromino.py +++ b/tetromino.py @@ -185,8 +185,8 @@ class Tetromino(): elif mode == 2: offset_map= { 'i': {0: 9, 1: 8, 2: 9, 3: 8}, - 'a': {0: 9, 1: 9, 2: 9, 3: 9}, - 'b': {0: 9, 1: 9, 2: 9, 3: 9}, + 'a': {0: 9, 1: 8, 2: 9, 3: 8}, + 'b': {0: 9, 1: 8, 2: 9, 3: 8}, 'c': {0: 10, 1: 10, 2: 10, 3: 10}, 'o': {0: 9, 1: 9, 2: 9, 3: 9}, 'd': {0: 9, 1: 9, 2: 9, 3: 9},