blob: 0556d5b88404f3f3d69e252f043d304152b6496a (
plain)
1
2
3
4
5
6
7
8
9
|
minetest.register_lbm({
name = "skycraft:netherrack_fix",
nodenames = {"mcl_core:stone"},
action = function(pos)
if pos.y < -28000 then
minetest.set_node(pos, {name = "mcl_nether:netherrack"})
end
end
})
|