From 1a75d983dc714473152eb1e15400669dfab97471 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Thu, 7 Jan 2021 20:53:36 -0500 Subject: [PATCH] Corrected PAIRS big spawns --- tetris/rulesets/pairs.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tetris/rulesets/pairs.lua b/tetris/rulesets/pairs.lua index 4bc8481..f392c13 100644 --- a/tetris/rulesets/pairs.lua +++ b/tetris/rulesets/pairs.lua @@ -28,16 +28,16 @@ PAIRS.spawn_positions = { } PAIRS.big_spawn_positions = { - [1] = { x=2, y=3 }, + [1] = { x=2, y=2 }, [2] = { x=2, y=3 }, [3] = { x=2, y=3 }, [4] = { x=2, y=3 }, - [5] = { x=2, y=3 }, - [6] = { x=2, y=3 }, - [7] = { x=2, y=3 }, - [8] = { x=2, y=3 }, - [9] = { x=2, y=3 }, - [10] = { x=2, y=3 }, + [5] = { x=3, y=3 }, + [6] = { x=3, y=3 }, + [7] = { x=3, y=3 }, + [8] = { x=3, y=3 }, + [9] = { x=3, y=3 }, + [10] = { x=3, y=3 }, [11] = { x=2, y=3 }, [12] = { x=2, y=3 }, [13] = { x=2, y=3 },