Fixed Stacker's speed curve, whoops

This commit is contained in:
Ishaan Bhardwaj 2021-02-06 20:53:28 -05:00
parent 67fdfa56b7
commit a963cdcf40

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()