Fix wrong argument to is_creative_enabled

This commit is contained in:
cora 2022-05-25 00:37:57 +02:00 committed by Gitea
parent efbf3d9750
commit 6a2f9e1a16
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ local function get_after_use_callback(itemdef)
-- If the tool does not have after_use, add wear to the tool as if no
-- after_use was registered.
return function(itemstack, user, node, digparams)
if not minetest.is_creative_enabled(user) then
if not minetest.is_creative_enabled(user:get_player_name()) then
itemstack:add_wear(digparams.wear)
end