forked from VoxeLibre/VoxeLibre
Merge pull request 'Fix wrong argument to is_creative_enabled' (#2237) from fix_wtong_is_creative_usage into master
Reviewed-on: MineClone2/MineClone2#2237
This commit is contained in:
commit
e2fc41cf51
|
@ -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
|
-- If the tool does not have after_use, add wear to the tool as if no
|
||||||
-- after_use was registered.
|
-- after_use was registered.
|
||||||
return function(itemstack, user, node, digparams)
|
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)
|
itemstack:add_wear(digparams.wear)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue