diff --git a/mods/MAPGEN/mcl_portals/portal_end.lua b/mods/MAPGEN/mcl_portals/portal_end.lua index a1c6906f..cc2dc8b9 100644 --- a/mods/MAPGEN/mcl_portals/portal_end.lua +++ b/mods/MAPGEN/mcl_portals/portal_end.lua @@ -372,17 +372,18 @@ minetest.override_item("mcl_end:ender_eye", { on_place = function(itemstack, user, pointed_thing) local nodedef = minetest.registered_nodes[minetest.get_node(pointed_thing.under).name] --new + -- If used on frame, open portal if pointed_thing.under and minetest.get_node(pointed_thing.under).name == "mcl_nether:red_nether_brick" then make_end_portal(pointed_thing.under) minetest.sound_play( "fire_flint_and_steel", {pos = pointed_thing.above, gain = 0.5, max_hear_distance = 8} ) + if not minetest.setting_getbool("creative_mode") and used == true then + itemstack:take_item() -- 1 use + end end - if not minetest.setting_getbool("creative_mode") and used == true then - itemstack:take_item() -- 1 use - end return itemstack end, }) diff --git a/mods/MAPGEN/mcl_portals/portal_nether.lua b/mods/MAPGEN/mcl_portals/portal_nether.lua index 9705e289..c8c875eb 100644 --- a/mods/MAPGEN/mcl_portals/portal_nether.lua +++ b/mods/MAPGEN/mcl_portals/portal_nether.lua @@ -398,7 +398,7 @@ minetest.override_item("mcl_fire:flint_and_steel", { local used = false if pointed_thing.under and minetest.get_node(pointed_thing.under).name == "mcl_core:obsidian" then - done = make_portal(pointed_thing.under) + make_portal(pointed_thing.under) else if pointed_thing.type == "node" then local nodedef = minetest.registered_nodes[minetest.get_node(pointed_thing.under).name]