fix missing local round function

This commit is contained in:
tenplus1 2023-06-16 07:06:36 +01:00
parent caa12a7d96
commit 72630588cf

View File

@ -1,3 +1,16 @@
local function round(n)
if (n > 0) then
return n % 1 >= 0.5 and math.ceil(n) or math.floor(n)
else
n = -n
local t = n % 1 >= 0.5 and math.ceil(n) or math.floor(n)
return -t
end
end
local function duck_explosion(pos)
if minetest.is_protected(pos, "") then