aboutsummaryrefslogtreecommitdiff
path: root/src/onload/nether_portal.lua
blob: 28a861bcdc920c6a4b93154d5b4dde3c70dd9a6f (plain)
1
2
3
4
5
6
7
8
9
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