mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-16 15:30:30 +01:00
fixed generated default trees and watershed generate in nether
not generate if y < -19600
This commit is contained in:
parent
4b99c22e11
commit
7295b08c31
|
@ -355,6 +355,7 @@ minetest.register_node("default:mg_cherry_sapling", {
|
|||
local c_mg_cherry_sapling = minetest.get_content_id("default:mg_cherry_sapling")
|
||||
|
||||
minetest.register_on_generated(function(minp, maxp, seed)
|
||||
if minp.y < -19600 then return end -- no generate in nether
|
||||
local timer = os.clock()
|
||||
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||
local data = vm:get_data()
|
||||
|
|
|
@ -720,7 +720,7 @@ minetest.register_chatcommand("regen",{
|
|||
local x1 = x0 + 79
|
||||
local y1 = y0 + 79
|
||||
local z1 = z0 + 79
|
||||
|
||||
if y0 < -19600 then return end -- no generate in nether
|
||||
if y0 < YMIN or y1 > YMAX then
|
||||
return
|
||||
end
|
||||
|
@ -753,6 +753,7 @@ minetest.register_chatcommand("regen",{
|
|||
-- On generated function
|
||||
|
||||
minetest.register_on_generated(function(minp, maxp, seed)
|
||||
if minp.y < -19600 then return end -- no generate in nether
|
||||
if minp.y < YMIN or maxp.y > YMAX then
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user