Fix missing division for dropped item velocity calculation

This commit is contained in:
Hybrid Dog 2017-09-15 10:27:28 +02:00
parent 41e93d3bf6
commit d5b28e01b0
1 changed files with 2 additions and 2 deletions

View File

@ -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