summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onchunkgenerating.lua
diff options
context:
space:
mode:
authornielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-24 16:44:44 +0100
committernielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-24 16:44:44 +0100
commit03e29802cdde309f3734ab7b6dd17ab60b9a359f (patch)
treebcc0712b29b55fa6ede3df3757f14e0c428b8af4 /MCServer/Plugins/Core/onchunkgenerating.lua
parentFixed a problem in Linux handling of ListenThread. (diff)
downloadcuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar.gz
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar.bz2
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar.lz
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar.xz
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.tar.zst
cuberite-03e29802cdde309f3734ab7b6dd17ab60b9a359f.zip
Diffstat (limited to 'MCServer/Plugins/Core/onchunkgenerating.lua')
-rw-r--r--MCServer/Plugins/Core/onchunkgenerating.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/onchunkgenerating.lua b/MCServer/Plugins/Core/onchunkgenerating.lua
new file mode 100644
index 000000000..4c97329bd
--- /dev/null
+++ b/MCServer/Plugins/Core/onchunkgenerating.lua
@@ -0,0 +1,21 @@
+function OnChunkGenerating(World, ChunkX, ChunkZ, ChunkDesc)
+ if LimitWorld == true then
+ SpawnX = math.floor(World:GetSpawnX() / 16)
+ SpawnZ = math.floor(World:GetSpawnZ() / 16)
+ if ( (SpawnX + LimitWorldWidth) < ChunkX ) or ( (SpawnX - LimitWorldWidth) > ChunkX ) then
+ FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
+ end
+ if ( (SpawnZ + LimitWorldWidth) < ChunkZ ) or ( (SpawnZ - LimitWorldWidth) > ChunkZ ) then
+ FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
+ end
+ end
+end
+
+function FillBlocks(World, ChunkX, ChunkZ, ChunkDesc)
+ ChunkDesc:FillBlocks(0,0)
+ ChunkDesc:SetUseDefaultBiomes(false)
+ ChunkDesc:SetUseDefaultHeight(false)
+ ChunkDesc:SetUseDefaultComposition(false)
+ ChunkDesc:SetUseDefaultStructures(false)
+ ChunkDesc:SetUseDefaultFinish(false)
+end \ No newline at end of file