summaryrefslogtreecommitdiffstats
path: root/src/Generating/EndGen.h
diff options
context:
space:
mode:
authorNiLSPACE <NiLSPACE@users.noreply.github.com>2020-10-04 17:12:36 +0200
committerGitHub <noreply@github.com>2020-10-04 17:12:36 +0200
commit23021dd8287ae17a5653040114c875b46a63a398 (patch)
tree941a22d9fd3e7412ed2ecb6ce55b130bc73881f2 /src/Generating/EndGen.h
parentRemove SetProperty(...cPlayer) (diff)
downloadcuberite-23021dd8287ae17a5653040114c875b46a63a398.tar
cuberite-23021dd8287ae17a5653040114c875b46a63a398.tar.gz
cuberite-23021dd8287ae17a5653040114c875b46a63a398.tar.bz2
cuberite-23021dd8287ae17a5653040114c875b46a63a398.tar.lz
cuberite-23021dd8287ae17a5653040114c875b46a63a398.tar.xz
cuberite-23021dd8287ae17a5653040114c875b46a63a398.tar.zst
cuberite-23021dd8287ae17a5653040114c875b46a63a398.zip
Diffstat (limited to '')
-rw-r--r--src/Generating/EndGen.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Generating/EndGen.h b/src/Generating/EndGen.h
index f3d9fde7b..c1c6f00b6 100644
--- a/src/Generating/EndGen.h
+++ b/src/Generating/EndGen.h
@@ -41,10 +41,6 @@ protected:
NOISE_DATATYPE m_FrequencyY;
NOISE_DATATYPE m_FrequencyZ;
- // Minimum and maximum chunk coords for chunks inside the island area. Chunks outside won't get calculated at all
- int m_MinChunkX, m_MaxChunkX;
- int m_MinChunkZ, m_MaxChunkZ;
-
// Noise array for the last chunk (in the noise range)
cChunkCoords m_LastChunkCoords;
NOISE_DATATYPE m_NoiseArray[17 * 17 * 257]; // x + 17 * z + 17 * 17 * y
@@ -56,10 +52,6 @@ protected:
/** Generates the m_NoiseArray array for the current chunk */
void GenerateNoiseArray(void);
- /** Returns true if the chunk is outside of the island's dimensions */
- bool IsChunkOutsideRange(cChunkCoords a_ChunkCoords);
-
-
// cTerrainShapeGen overrides:
virtual void GenShape(cChunkCoords a_ChunkCoords, cChunkDesc::Shape & a_Shape) override;