Fix missing division for dropped item velocity calculation

此提交包含在:
Hybrid Dog
2017-09-15 10:27:28 +02:00
父節點 7afe3723e4
當前提交 92d68aa48a

查看文件

@ -223,12 +223,12 @@ and not minetest.settings:get_bool("creative_mode") then
if x >= 0 then
x = x+1
end
vel.x = x
vel.x = 1 / x
local z = math.random(-5, 4)
if z >= 0 then
z = z+1
end
vel.z = z
vel.z = 1 / z
obj:setvelocity(vel)
end
end