diff options
author | Tycho <work.tycho+git@gmail.com> | 2015-03-01 15:27:01 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2015-03-01 15:27:01 +0100 |
commit | 3f61255fe145fe6a4f38f5d57e3475b7753915a7 (patch) | |
tree | 9a5b10cf9894495580b9cdefb60a33cff9d23ce0 /src/Generating/BioGen.cpp | |
parent | Merge pull request #1780 from DevToaster/master (diff) | |
download | cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar.gz cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar.bz2 cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar.lz cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar.xz cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.tar.zst cuberite-3f61255fe145fe6a4f38f5d57e3475b7753915a7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/BioGen.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/Generating/BioGen.cpp b/src/Generating/BioGen.cpp index 378ece6a3..a3cc20247 100644 --- a/src/Generating/BioGen.cpp +++ b/src/Generating/BioGen.cpp @@ -941,21 +941,21 @@ public: cBioGenGrown(int a_Seed) { auto FinalRivers = - std::make_shared<cIntGenSmooth<8>> (a_Seed + 1, - std::make_shared<cIntGenZoom <10>> (a_Seed + 2, - std::make_shared<cIntGenRiver <7>> (a_Seed + 3, - std::make_shared<cIntGenZoom <9>> (a_Seed + 4, - std::make_shared<cIntGenSmooth<6>> (a_Seed + 5, - std::make_shared<cIntGenZoom <8>> (a_Seed + 8, - std::make_shared<cIntGenSmooth<6>> (a_Seed + 5, - std::make_shared<cIntGenZoom <8>> (a_Seed + 9, - std::make_shared<cIntGenSmooth<6>> (a_Seed + 5, - std::make_shared<cIntGenZoom <8>> (a_Seed + 10, - std::make_shared<cIntGenSmooth<6>> (a_Seed + 5, - std::make_shared<cIntGenSmooth<8>> (a_Seed + 6, - std::make_shared<cIntGenZoom <10>> (a_Seed + 11, - std::make_shared<cIntGenChoice<2, 7>>(a_Seed + 12 - )))))))))))))); + + std::make_shared<cIntGenChoice<2, 7>>(a_Seed + 12) + >> MakeIntGen<cIntGenZoom <10>>(a_Seed + 11) + >> MakeIntGen<cIntGenSmooth<8>>(a_Seed + 6) + >> MakeIntGen<cIntGenSmooth<6>>(a_Seed + 5) + >> MakeIntGen<cIntGenZoom <8>>(a_Seed + 10) + >> MakeIntGen<cIntGenSmooth<6>>(a_Seed + 5) + >> MakeIntGen<cIntGenZoom <8>>(a_Seed + 9) + >> MakeIntGen<cIntGenSmooth<6>>(a_Seed + 5) + >> MakeIntGen<cIntGenZoom <8>>(a_Seed + 8) + >> MakeIntGen<cIntGenSmooth<6>>(a_Seed + 5) + >> MakeIntGen<cIntGenZoom <9>>(a_Seed + 4) + >> MakeIntGen<cIntGenRiver <7>>(a_Seed + 3) + >> MakeIntGen<cIntGenZoom <10>>(a_Seed + 2) + >> MakeIntGen<cIntGenSmooth<8>>(a_Seed + 1); auto alteration = std::make_shared<cIntGenZoom <8>>(a_Seed, |