diff options
author | madmaxoft <github@xoft.cz> | 2013-10-10 15:49:24 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-10 15:49:24 +0200 |
commit | 85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d (patch) | |
tree | 7b9b9e404d9c4d2eaf10189ac67b248cc26fb73d /source/Generating/BioGen.h | |
parent | APIDump: Fixed extra pages copying. (diff) | |
download | cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar.gz cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar.bz2 cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar.lz cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar.xz cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.tar.zst cuberite-85eb85dbf9f56a3a73e01426e67bf2dbe6477f8d.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Generating/BioGen.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/Generating/BioGen.h b/source/Generating/BioGen.h index f2afc3e8c..bc70bfab2 100644 --- a/source/Generating/BioGen.h +++ b/source/Generating/BioGen.h @@ -33,7 +33,7 @@ protected: // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; } ; @@ -72,7 +72,7 @@ protected: int m_TotalChain; // Number of cache items walked to get to a hit (only added for hits) virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; } ; @@ -109,7 +109,7 @@ protected: // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; } ; @@ -134,7 +134,7 @@ protected: // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; EMCSBiome VoronoiBiome(int a_BlockX, int a_BlockZ); } ; @@ -156,7 +156,7 @@ public: protected: // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; /// Distorts the coords using a Perlin-like noise void Distort(int a_BlockX, int a_BlockZ, int & a_DistortedX, int & a_DistortedZ); @@ -195,7 +195,7 @@ protected: // cBiomeGen overrides: virtual void GenBiomes(int a_ChunkX, int a_ChunkZ, cChunkDef::BiomeMap & a_BiomeMap) override; - virtual void Initialize(cIniFile & a_IniFile) override; + virtual void InitializeBiomeGen(cIniFile & a_IniFile) override; /** Step 1: Decides between ocean, land and mushroom, using a DistVoronoi with special conditions and post-processing for mushroom islands Sets biomes to biOcean, -1 (i.e. land), biMushroomIsland or biMushroomShore |