Ti randomizer no longer draws Z as first piece

pull/16/head
Ishaan Bhardwaj 2021-03-02 20:31:56 -05:00
parent 83de216408
commit 7250bee619
1 changed files with 2 additions and 5 deletions

View File

@ -28,11 +28,8 @@ end
function History6Rolls35PoolRandomizer:generatePiece()
local index, x
if self.first then
local prevent = {"S", "Z", "O"}
repeat
index = math.random(#self.pool)
x = self.pool[index]
until not inHistory(x, prevent)
index = math.random(20)
x = self.pool[index]
self.first = false
else
for i = 1, 6 do