From 9d15feef335a4fe2196e105016af88eb3e4b3c1c Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Mon, 5 Oct 2020 22:47:34 -0400 Subject: [PATCH] Another fix? --- tetris/modes/konoha.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/konoha.lua b/tetris/modes/konoha.lua index f39051d..42d7e9e 100755 --- a/tetris/modes/konoha.lua +++ b/tetris/modes/konoha.lua @@ -132,11 +132,11 @@ function KonohaGame:onLineClear(cleared_row_count) self.bravos = self.bravos + 1 if self.level < 1000 then self.time_limit = self.time_limit + bravo_bonus[cleared_row_count / 2] else self.time_limit = self.time_limit + bravo_ot_bonus[cleared_row_count / 2] + if self.bravos == 11 then self.randomizer = Bag5Randomizer() end end elseif self.level < 1000 then self.time_limit = self.time_limit + non_bravo_bonus[cleared_row_count / 2] end - if self.bravos == 11 then self.randomizer = Bag5Randomizer() end end function KonohaGame:getBackground()