blob: 1c3dc0b50d2b645c38fa607d80ec118323ccf97c (
plain)
1
2
3
4
5
6
7
8
9
10
|
minetest.register_on_mods_loaded(function()
local old_light_nether_portal = mcl_portals.light_nether_portal
function mcl_portals.light_nether_portal(pos)
if mcl_worlds.pos_to_dimension(pos) == "nether" then
return false
else
return old_light_nether_portal(pos)
end
end
end)
|