better creative check

This commit is contained in:
FaceDeer 2022-08-24 20:41:38 -06:00
parent 75fe53f5eb
commit e5f8457e93

View File

@ -43,7 +43,7 @@ local stal_on_place = function(itemstack, placer, pointed_thing)
-- add the node and remove 1 item from the itemstack -- add the node and remove 1 item from the itemstack
minetest.add_node(pt.above, {name = itemstack:get_name(), param2 = new_param2}) minetest.add_node(pt.above, {name = itemstack:get_name(), param2 = new_param2})
if not minetest.settings:get_bool("creative_mode", false) then if not minetest.is_creative_enabled(placer:get_player_name()) then
itemstack:take_item() itemstack:take_item()
end end
return itemstack return itemstack