Fix dig factoid for wool and cobweb

This commit is contained in:
Wuzzy 2017-08-03 03:50:02 +02:00
parent bbb2edc0d8
commit b7a287124e
1 changed files with 2 additions and 2 deletions

View File

@ -144,11 +144,11 @@ doc.sub.items.register_factoid("nodes", "mining", function(itemstring, def)
end
tool_minable = true
end
if groups.shearsy then
if groups.shearsy or groups.shearsy_wool then
datastring = datastring .. "• Shears" .. "\n"
tool_minable = true
end
if groups.swordy then
if groups.swordy or groups.swordy_cobweb then
datastring = datastring .. "• Sword" .. "\n"
tool_minable = true
end