diff options
author | Mattes D <github@xoft.cz> | 2014-11-01 21:01:33 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-01 21:01:33 +0100 |
commit | d868346491cf35ea9d52d60786904b0552d9d67c (patch) | |
tree | 7232b4b00386801d32f04643711d5afd0bbdad2b /src/Generating/BioGen.cpp | |
parent | GrownProt biome gen: Added biome edges. (diff) | |
download | cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar.gz cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar.bz2 cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar.lz cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar.xz cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.tar.zst cuberite-d868346491cf35ea9d52d60786904b0552d9d67c.zip |
Diffstat (limited to 'src/Generating/BioGen.cpp')
-rw-r--r-- | src/Generating/BioGen.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Generating/BioGen.cpp b/src/Generating/BioGen.cpp index e4a3a3629..dc5f715ca 100644 --- a/src/Generating/BioGen.cpp +++ b/src/Generating/BioGen.cpp @@ -1035,6 +1035,14 @@ public: std::make_shared<cProtIntGenLandOcean>(a_Seed, 20 )); + auto alteration2 = + std::make_shared<cProtIntGenZoom >(a_Seed + 1, + std::make_shared<cProtIntGenZoom >(a_Seed + 2, + std::make_shared<cProtIntGenZoom >(a_Seed + 1, + std::make_shared<cProtIntGenZoom >(a_Seed + 2, + std::make_shared<cProtIntGenLandOcean>(a_Seed + 1, 10 + ))))); + auto FinalBiomes = std::make_shared<cProtIntGenSmooth >(a_Seed + 1, std::make_shared<cProtIntGenZoom >(a_Seed + 15, @@ -1045,6 +1053,7 @@ public: std::make_shared<cProtIntGenAddIslands >(a_Seed + 2004, 10, std::make_shared<cProtIntGenAddToOcean >(a_Seed + 10, 500, biDeepOcean, std::make_shared<cProtIntGenReplaceRandomly>(a_Seed + 1, biPlains, biSunflowerPlains, 20, + std::make_shared<cProtIntGenMBiomes >(a_Seed + 5, alteration2, std::make_shared<cProtIntGenAlternateBiomes>(a_Seed + 1, alteration, std::make_shared<cProtIntGenBiomeEdges >(a_Seed + 3, std::make_shared<cProtIntGenZoom >(a_Seed + 2, @@ -1066,7 +1075,7 @@ public: std::make_shared<cProtIntGenSetRandomly >(a_Seed + 9, 50, bgOcean, std::make_shared<cProtIntGenZoom >(a_Seed + 10, std::make_shared<cProtIntGenLandOcean >(a_Seed + 100, 30 - )))))))))))))))))))))))))))))); + ))))))))))))))))))))))))))))))); m_Gen = std::make_shared<cProtIntGenSmooth >(a_Seed, |