mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2024-11-04 13:23:42 +01:00
Fix potential bug with new bone location method
This commit is contained in:
parent
37b10d1cee
commit
190614d47b
@ -516,8 +516,9 @@ if ARMOR_DROP == true or ARMOR_DESTROY == true then
|
|||||||
local minp = vector.subtract(pos, 8)
|
local minp = vector.subtract(pos, 8)
|
||||||
local bones = minetest.find_nodes_in_area(minp, maxp, {"bones:bones"})
|
local bones = minetest.find_nodes_in_area(minp, maxp, {"bones:bones"})
|
||||||
for _, p in pairs(bones) do
|
for _, p in pairs(bones) do
|
||||||
meta = minetest.get_meta(p)
|
local m = minetest.get_meta(p)
|
||||||
if meta:get_string("owner") == name then
|
if m:get_string("owner") == name then
|
||||||
|
meta = m
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user