Open hexa0 opened 2 years ago
I had the same problem. Fixed by changing the divmod function to this:
local function divmod(a, b) return math.floor(a / b), a % b end
I had the same problem. Fixed by changing the divmod function to this: