1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 15:30:33 +02:00

fixed generated default trees and watershed generate in nether

not generate if y < -19600
This commit is contained in:
crabman77 2015-07-15 15:41:14 +02:00
parent 4b99c22e11
commit 7295b08c31
2 changed files with 3 additions and 1 deletions

View File

@ -355,6 +355,7 @@ minetest.register_node("default:mg_cherry_sapling", {
local c_mg_cherry_sapling = minetest.get_content_id("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) minetest.register_on_generated(function(minp, maxp, seed)
if minp.y < -19600 then return end -- no generate in nether
local timer = os.clock() local timer = os.clock()
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip") local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
local data = vm:get_data() local data = vm:get_data()

View File

@ -720,7 +720,7 @@ minetest.register_chatcommand("regen",{
local x1 = x0 + 79 local x1 = x0 + 79
local y1 = y0 + 79 local y1 = y0 + 79
local z1 = z0 + 79 local z1 = z0 + 79
if y0 < -19600 then return end -- no generate in nether
if y0 < YMIN or y1 > YMAX then if y0 < YMIN or y1 > YMAX then
return return
end end
@ -753,6 +753,7 @@ minetest.register_chatcommand("regen",{
-- On generated function -- On generated function
minetest.register_on_generated(function(minp, maxp, seed) 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 if minp.y < YMIN or maxp.y > YMAX then
return return
end end