diff options
author | Mattes D <github@xoft.cz> | 2014-11-02 16:47:56 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-02 16:47:56 +0100 |
commit | dbed5c0726f69a2ff43a869491d93030d6d9c742 (patch) | |
tree | a467e4dcf8614c679c2ea04afc4c4a62331b3a58 /src/Generating/IntGen.h | |
parent | Grown biomes: Unified with GrownProt biomes. (diff) | |
download | cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar.gz cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar.bz2 cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar.lz cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar.xz cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.tar.zst cuberite-dbed5c0726f69a2ff43a869491d93030d6d9c742.zip |
Diffstat (limited to 'src/Generating/IntGen.h')
-rw-r--r-- | src/Generating/IntGen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Generating/IntGen.h b/src/Generating/IntGen.h index 83a0e569a..b25e378c0 100644 --- a/src/Generating/IntGen.h +++ b/src/Generating/IntGen.h @@ -1128,7 +1128,7 @@ public: { // Generate the base biomes and the alterations: m_BaseBiomes->GetInts(a_MinX, a_MinZ, a_Values); - super::Values alterations; + typename super::Values alterations; m_Alterations->GetInts(a_MinX, a_MinZ, alterations); // Change the biomes into their alternate versions: @@ -1196,7 +1196,7 @@ public: virtual void GetInts(int a_MinX, int a_MinZ, typename super::Values & a_Values) override { // Generate the underlying biomes: - Underlying::element_type::Values lowerValues; + typename Underlying::element_type::Values lowerValues; m_Underlying->GetInts(a_MinX - 1, a_MinZ - 1, lowerValues); // Convert incompatible edges into neutral biomes: @@ -1358,7 +1358,7 @@ public: { // Generate the underlying biomes and the alterations: m_Underlying->GetInts(a_MinX, a_MinZ, a_Values); - super::Values alterations; + typename super::Values alterations; m_Alteration->GetInts(a_MinX, a_MinZ, alterations); // Wherever alterations are nonzero, change into alternate biome, if available: |