Replicate the following commit (with cherry-picked parents on both
sides):

    commit a269b0d5dc
    Merge: 9363aaa25 86e96f5dc
    Author:     flyc0r <flyc0r@localhost.localdomain>
    AuthorDate: Mon Oct 5 05:11:10 2020 +0200
    Commit:     flyc0r <flyc0r@localhost.localdomain>
    CommitDate: Mon Oct 5 05:11:10 2020 +0200

	m
	Merge https://repo.or.cz/waspsaliva into master

     clientmods/inventory/autotool.lua | 1 -
     1 file changed, 1 deletion(-)
wsc-master-rebase
flyc0r 2020-10-05 05:11:10 +02:00 committed by Schmappie Eldress
commit dc9799e082
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ minetest.register_on_punchnode(function(pos, node)
local new_index = player:get_wield_index()
local is_better, best_time = false, math.huge
is_better, best_time = check_tool(player:get_wielded_item(), node_groups, best_time)
is_better, best_time = check_tool(inventory.hand[1], node_groups, best_time)
for index, stack in pairs(inventory.main) do
is_better, best_time = check_tool(stack, node_groups, best_time)
if is_better then