diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-08-10 22:36:02 +0200 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-08-10 22:36:02 +0200 |
commit | d95768d01a93a14df38f6e0e33ca180b779c5df0 (patch) | |
tree | 16412805d255206f91c4eece1aa2a98104ab2df6 /src/Generating/StructGen.h | |
parent | Added NaturalPatches generator (diff) | |
download | cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.gz cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.bz2 cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.lz cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.xz cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.zst cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/StructGen.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Generating/StructGen.h b/src/Generating/StructGen.h index e2fe8bc1a..55d5bc1c7 100644 --- a/src/Generating/StructGen.h +++ b/src/Generating/StructGen.h @@ -78,16 +78,16 @@ class cStructGenOreNests : public: struct OreInfo { - BLOCKTYPE BlockType; // The type of the nest. - int MaxHeight; // The highest possible a nest can occur - int NumNests; // How many nests per chunk - int NestSize; // The amount of blocks a nest can have. + BLOCKTYPE BlockType; // The type of the nest. + int MaxHeight; // The highest possible a nest can occur + int NumNests; // How many nests per chunk + int NestSize; // The amount of blocks a nest can have. }; typedef std::vector<OreInfo> OreList; - cStructGenOreNests(int a_Seed, OreList a_OreList, BLOCKTYPE a_ToReplace) : - m_Noise(a_Seed), + cStructGenOreNests(int a_Seed, OreList a_OreList, BLOCKTYPE a_ToReplace) : + m_Noise(a_Seed), m_Seed(a_Seed), m_OreList(a_OreList), m_ToReplace(a_ToReplace) @@ -97,7 +97,7 @@ protected: cNoise m_Noise; int m_Seed; - OreList m_OreList; // A list of possible ores. + OreList m_OreList; // A list of possible ores. BLOCKTYPE m_ToReplace; // cFinishGen override: |