mirror of
https://github.com/minetest-mods/item_drop.git
synced 2025-01-02 19:17:37 +01:00
Fix missing division for dropped item velocity calculation
This commit is contained in:
parent
41e93d3bf6
commit
d5b28e01b0
4
init.lua
4
init.lua
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user