Stop dropped armor disappearing into ground

This stops dropped armor disappearing into ground at times...
This commit is contained in:
tenplus1 2015-05-05 09:29:04 +01:00 committed by stujones11
parent 6704431499
commit 306f193db6
1 changed files with 1 additions and 9 deletions

View File

@ -526,15 +526,7 @@ if ARMOR_DROP == true or ARMOR_DESTROY == true then
armor.drop_armor = function(pos, stack)
local obj = minetest.add_item(pos, stack)
if obj then
local x = math.random(1, 5)
if math.random(1,2) == 1 then
x = -x
end
local z = math.random(1, 5)
if math.random(1,2) == 1 then
z = -z
end
obj:setvelocity({x=1/x, y=obj:getvelocity().y, z=1/z})
obj:setvelocity({x=math.random(-1, 1), y=5, z=math.random(-1, 1)})
end
end
minetest.register_on_dieplayer(function(player)