From d3fa6fe80793794ea0d796c35299d1120079fa9a Mon Sep 17 00:00:00 2001 From: Thaloria Date: Mon, 24 Jul 2023 13:54:42 +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 6f2288a..3a06c9a 100644 --- a/tetromino.py +++ b/tetromino.py @@ -199,8 +199,8 @@ class Tetromino(): elif mode == 3: offset_map= { 'i': {0: 8, 1: 10, 2: 8, 3: 10}, - 'a': {0: 9, 1: 9, 2: 9, 3: 9}, - 'b': {0: 9, 1: 9, 2: 9, 3: 9}, + 'a': {0: 8, 1: 9, 2: 8, 3: 9}, + 'b': {0: 8, 1: 9, 2: 8, 3: 9}, 'c': {0: 8, 1: 8, 2: 8, 3: 8}, 'o': {0: 9, 1: 9, 2: 9, 3: 9}, 'd': {0: 9, 1: 9, 2: 9, 3: 9},