mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-05 05:41:28 +02:00
Fix dig factoid for wool and cobweb
This commit is contained in:
@ -144,11 +144,11 @@ doc.sub.items.register_factoid("nodes", "mining", function(itemstring, def)
|
|||||||
end
|
end
|
||||||
tool_minable = true
|
tool_minable = true
|
||||||
end
|
end
|
||||||
if groups.shearsy then
|
if groups.shearsy or groups.shearsy_wool then
|
||||||
datastring = datastring .. "• Shears" .. "\n"
|
datastring = datastring .. "• Shears" .. "\n"
|
||||||
tool_minable = true
|
tool_minable = true
|
||||||
end
|
end
|
||||||
if groups.swordy then
|
if groups.swordy or groups.swordy_cobweb then
|
||||||
datastring = datastring .. "• Sword" .. "\n"
|
datastring = datastring .. "• Sword" .. "\n"
|
||||||
tool_minable = true
|
tool_minable = true
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user