This commit is contained in:
Elias Åström 2021-03-21 12:18:24 +01:00
parent 0996a83ba0
commit b0c7941b3a
1 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,10 @@ end
-- To make it more efficient it will first check a hash value to determine if
-- the tool needs to be updated.
function mcl_enchanting.update_groupcaps(itemstack)
if not itemstack:get_tool_capabilities() then
return
end
local name = itemstack:get_name()
local level = mcl_enchanting.get_enchantment(itemstack, "efficiency")
local groupcaps = get_efficiency_groupcaps(name, level)