Use next() instead of one-time loop to fix luacheck warning in mcl_util.calculate_durability

This commit is contained in:
Elias Fleckenstein 2021-05-26 20:56:00 +02:00
parent 772f48ed58
commit c57ead6985
1 changed files with 1 additions and 6 deletions

View File

@ -456,12 +456,7 @@ function mcl_util.calculate_durability(itemstack)
end
end
end
if not uses then
for _, v in pairs(itemstack:get_tool_capabilities().groupcaps) do
uses = v.uses
break
end
end
uses = uses or (next(itemstack:get_tool_capabilities().groupcaps) or {}).uses
end
return uses or 0