Allow starting pieces to be in bounds

This commit is contained in:
Sam Tay 2017-06-17 11:05:58 -04:00
parent 8ec499a0a9
commit 344b4f8063

View file

@ -250,7 +250,7 @@ isOccupied = flip M.member
-- | Check if coordinate is in or out of bounds
isInBounds, isOutOfBounds :: Coord -> Bool
isInBounds (x,y) = x `elem` [1..boardWidth] && y `elem` [1..boardHeight]
isInBounds (x,y) = x `elem` [1..boardWidth] && y `elem` [1..]
isOutOfBounds = not . isInBounds
-- | Gravitate current block, i.e. shift down