Merge pull request 'Don't subtract items when placing in gm-creative' (#2648) from creative_infiniplace into master

Reviewed-on: MineClone2/MineClone2#2648
This commit is contained in:
cora 2022-09-14 01:09:45 +00:00
commit 6dfaee297d
1 changed files with 13 additions and 8 deletions

View File

@ -218,6 +218,11 @@ minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing)
end
end)
--Don't subtract from inv when placing in gamemode-creative
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack, pointed_thing)
if minetest.is_creative_enabled(placer:get_player_name()) then return true end
end)
local function in_table(n,h)
for k,v in pairs(h) do
if v == n then return true end