Fix stone not being cuttable since recent commit

master
kilbith 2016-02-04 18:53:03 +01:00
parent 720cdff72c
commit 73a135151c
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ function xdecor.tablecopy(T)
if type(v) == "table" then
new[k] = xdecor.tablecopy(v)
else
new[k] = item
new[k] = v
end
end
return new

View File

@ -10,8 +10,8 @@ function worktable:nodes(def)
def.after_place_node and not def.on_rightclick and not
def.on_blast and not def.allow_metadata_inventory_take and not
(def.groups.not_in_creative_inventory == 1) and not
def.groups.wool and not def.drop and def.light_source == 0 and
def.description and def.description ~= ""
def.groups.wool and not def.description:find("Ore") and
def.description and def.description ~= "" and def.light_source == 0
end
-- Nodeboxes definitions.