Merge pull request 'Fix verbose tool info on non-tools' (#3530) from tool_info into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3530
Reviewed-by: ancientmarinerdev <ancientmariner_dev@proton.me>
This commit is contained in:
ancientmarinerdev 2023-03-15 15:40:17 +00:00
commit fa0a595009
2 changed files with 6 additions and 6 deletions

View File

@ -362,12 +362,6 @@ local function overwrite()
minetest.override_item(tname, {
tool_capabilities = toolcaps
})
else
-- This is needed to deal damage when punching mobs
-- with random items in hand in survival mode
minetest.override_item(tname, {
tool_capabilities = mcl_meshhand.survival_hand_tool_caps
})
end
end
end

View File

@ -90,3 +90,9 @@ if mcl_skins_enabled then
else
minetest.register_on_joinplayer(mcl_meshhand.update_player)
end
-- This is needed to deal damage when punching mobs
-- with random items in hand in survival mode
minetest.override_item("", {
tool_capabilities = mcl_meshhand.survival_hand_tool_caps
})