Allow level == 0

This commit is contained in:
Sam Tay 2017-06-17 02:54:52 -04:00
parent 8e1c949a69
commit 315f486520

View file

@ -188,7 +188,7 @@ clearFullRows g = g & board %~ clearBoard
updateScore :: Game -> Game
updateScore g = g & score %~ (+ newPoints)
where
newPoints = (g ^. level) * (g ^. rowClears ^. to latestOrZero ^. to points)
newPoints = (1 + g ^. level) * (g ^. rowClears ^. to latestOrZero ^. to points)
-- | Points awarded from number of rows cleared
points :: Int -- ^ rows cleared