]> git.lizzy.rs Git - xdecor.git/blobdiff - src/workbench.lua
Only Pickaxe is repairable.
[xdecor.git] / src / workbench.lua
index 79ba691f722eb9efe55ae66c29eae0209f3bdeab..41c797d1eeb47e3e958a6400296307f86d96bcf6 100644 (file)
@@ -71,9 +71,10 @@ workbench.defs = {
 -- Tools allowed to be repaired
 function workbench:repairable(stack)
        local tools = {"pick", "axe", "shovel", "sword", "hoe", "armor", "shield"}
-       for i=1, #tools do
-               return stack:find(tools[i])
+       for _, t in pairs(tools) do
+               if stack:find(t) then return true end
        end
+       return false
 end
 
 function workbench:get_output(inv, input, name)