Fix error in previous commit

This commit is contained in:
stujones11 2014-04-15 22:06:47 +01:00
parent b76508397f
commit ecfd397d77
1 changed files with 1 additions and 1 deletions

View File

@ -396,9 +396,9 @@ if ARMOR_DROP == true or ARMOR_DESTROY == true then
if ARMOR_DESTROY == false then
if minetest.get_modpath("bones") then
minetest.after(ARMOR_BONES_DELAY, function()
pos = vector.round(pos)
local node = minetest.get_node(pos)
if node.name == "bones:bones" then
pos = vector.round(pos)
local meta = minetest.get_meta(pos)
local owner = meta:get_string("owner")
local inv = meta:get_inventory()