Compare commits

...

3 Commits

Author SHA1 Message Date
Ishaan Bhardwaj 788aa11470 Bump version to v0.3.3.2 2023-07-07 18:16:34 -04:00
Ishaan Bhardwaj a303e82b90 Merge branch 'master' of https://github.com/millabasset/cambridge 2023-07-07 18:14:20 -04:00
Ishaan Bhardwaj b06d03c4e6 Fix bravo detection 2023-07-07 18:14:17 -04:00
2 changed files with 9 additions and 6 deletions

View File

@ -1 +1 @@
version = "v0.3.3.1"
version = "v0.3.3.2"

View File

@ -231,12 +231,15 @@ function Grid:applyBigPiece(piece)
end
end
function Grid:checkForBravo(cleared_row_count)
for i = 0, self.height - 1 - cleared_row_count do
for j = 0, self.width - 1 do
if self:isOccupied(j, i) then return false end
end
-- places where you see this take an argument used the old, buggy method
function Grid:checkForBravo()
for i = 0, self.height - 1 do
if not self:isRowFull(i+1) then
for j = 0, self.width - 1 do
if self:isOccupied(j, i) then return false end
end
end
end
return true
end