summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onchunkgenerating.lua
blob: 44a6cf29864998152cae3b2174cf48b497e8bd9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function OnChunkGenerating(World, ChunkX, ChunkZ, ChunkDesc)
	if (LimitWorld == true) then
		if not LimitWorldsCuboid[World:GetName()]:IsInside( Vector3i(ChunkX, 128, ChunkZ) ) then
			FillBlocks(ChunkDesc)
		end
	end
end

function FillBlocks(ChunkDesc)
	ChunkDesc:FillBlocks(0,0)
	ChunkDesc:SetUseDefaultBiomes(false)
	ChunkDesc:SetUseDefaultHeight(false)
	ChunkDesc:SetUseDefaultComposition(false)
	ChunkDesc:SetUseDefaultStructures(false)
	ChunkDesc:SetUseDefaultFinish(false)
end