From ab401c360c2adab9e87fe499f095a21df73aad45 Mon Sep 17 00:00:00 2001 From: Freeman Date: Fri, 15 Sep 2023 19:50:25 +0200 Subject: [PATCH] add shears tool type --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index 758f941..bc15e36 100644 --- a/init.lua +++ b/init.lua @@ -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