1
0
mirror of https://github.com/lisacvuk/minetest-toolranks.git synced 2025-01-09 15:30:17 +01:00

add shears tool type

This commit is contained in:
Freeman 2023-09-15 19:50:25 +02:00
parent 13352af352
commit ab401c360c

View File

@ -31,6 +31,8 @@ function toolranks.get_tool_type(description)
return "hoe"
elseif string.find(d, "sword") then
return "sword"
elseif string.find(d, "shears") then
return "shears"
else
return "tool"
end