Fixed a ceiling issue in C88

pull/9/head
Ishaan Bhardwaj 2021-11-23 14:37:46 -05:00
parent 8adbb06053
commit 5ece2994e9
1 changed files with 1 additions and 2 deletions

View File

@ -40,8 +40,7 @@ function MarathonC88Game:new(secret_inputs)
self.irs = false
self.grid.getCell = function(self, x, y)
if x < 1 or x > self.width or y < 5 or y > self.height then return oob
elseif y < 1 then return empty
if x < 1 or x > self.width or y < 5 or y > self.height then return nil
else return self.grid[y][x]
end
end