fix obj nil bug

This commit is contained in:
TenPlus1 2016-05-31 17:31:19 +01:00
parent a37e8e651e
commit 038aece5f7
1 changed files with 3 additions and 1 deletions

View File

@ -241,7 +241,9 @@ function minetest.is_protected(pos, digger)
-- drop stack
local obj = minetest.add_item(player:getpos(), sta)
obj:setvelocity({x = 0, y = 5, z = 0})
if obj then
obj:setvelocity({x = 0, y = 5, z = 0})
end
end)
end