mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2024-11-16 23:40:35 +01:00
Do not drop armor in uloaded areas
This commit is contained in:
parent
afce9f1140
commit
aa9984b789
|
@ -449,8 +449,11 @@ armor.get_valid_player = function(self, player, msg)
|
||||||
end
|
end
|
||||||
|
|
||||||
armor.drop_armor = function(pos, stack)
|
armor.drop_armor = function(pos, stack)
|
||||||
|
local node = minetest.get_node_or_nil(pos)
|
||||||
|
if node then
|
||||||
local obj = minetest.add_item(pos, stack)
|
local obj = minetest.add_item(pos, stack)
|
||||||
if obj then
|
if obj then
|
||||||
obj:setvelocity({x=math.random(-1, 1), y=5, z=math.random(-1, 1)})
|
obj:setvelocity({x=math.random(-1, 1), y=5, z=math.random(-1, 1)})
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user