Fixed Stacker's speed curve, whoops

pull/4/head
Ishaan Bhardwaj 2021-02-06 20:53:28 -05:00
parent 67fdfa56b7
commit a963cdcf40
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ function StackerGame:new()
end
function StackerGame:getSpeed()
return 5--20 ^ ((self.row - 4) / 15)
return 20 ^ ((self.row - 4) / 15)
end
function StackerGame:getMaxBlockWidth()