Fix rewind step calculation

This commit is contained in:
Quinn
2021-12-26 21:36:54 -08:00
parent 23104ec1f1
commit 3ec46b6bbf
3 changed files with 14 additions and 16 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ function ball:new(o)
ball.__count += 1
local o = o or {}
o.id = ball.__count
o.col = o.id % 16
o.col = o.col or o.id % 16
setmetatable(o, self)
o.__index = self
return o