Make bows and fishing rods show their durability in description (Fixes issue #1773)

This commit is contained in:
Emily 2021-08-06 11:14:17 +02:00
parent 5c563d6ffd
commit df0c1f1dd1
1 changed files with 5 additions and 0 deletions

View File

@ -107,3 +107,8 @@ tt.register_snippet(function(itemstring)
end
end)
tt.register_snippet(function(itemstring, _, itemstack)
if itemstring:sub(1, 23) == "mcl_fishing:fishing_rod" or itemstring:sub(1, 12) == "mcl_bows:bow" then
return S("Durability: @1 uses", mcl_util.calculate_durability(itemstack or ItemStack(itemstring)))
end
end)