Fix github issue #213: Dropping unknown items crashes the game

The items will now just disappear when dropped.
This commit is contained in:
Perttu Ahola 2012-08-19 10:55:04 +03:00
parent b717b6505b
commit 0b1ab41a95
1 changed files with 6 additions and 4 deletions

View File

@ -227,10 +227,12 @@ function minetest.item_drop(itemstack, dropper, pos)
local v = dropper:get_look_dir()
local p = {x=pos.x+v.x, y=pos.y+1.5+v.y, z=pos.z+v.z}
local obj = minetest.env:add_item(p, itemstack)
v.x = v.x*2
v.y = v.y*2 + 1
v.z = v.z*2
obj:setvelocity(v)
if obj then
v.x = v.x*2
v.y = v.y*2 + 1
v.z = v.z*2
obj:setvelocity(v)
end
else
minetest.env:add_item(pos, itemstack)
end