24.08.2017, 17:46
Not possible since we are using LuaJIT instead of standard Lua. It's much faster and has some advanced features. Instead of using // you can simply do this:
Or write a wrapper function:
Code:
res = math.floor(x / y)
Or write a wrapper function:
Code:
function idiv(x, y) return math.floor(x / y) end
res = idiv(x, y)