diff options
author | Mattes D <github@xoft.cz> | 2014-11-23 15:10:55 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-23 15:10:55 +0100 |
commit | 9f4342434b7a34d0a9523e68b3d13a9eeeb116ca (patch) | |
tree | 768d86de19a4bbd38d9ccd66588440a969ba1dbe /src/Generating/Noise3DGenerator.h | |
parent | Merge remote-tracking branch 'origin/master' into GeneratorShapeRefactor (diff) | |
download | cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar.gz cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar.bz2 cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar.lz cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar.xz cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.tar.zst cuberite-9f4342434b7a34d0a9523e68b3d13a9eeeb116ca.zip |
Diffstat (limited to 'src/Generating/Noise3DGenerator.h')
-rw-r--r-- | src/Generating/Noise3DGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Generating/Noise3DGenerator.h b/src/Generating/Noise3DGenerator.h index 1bc7f3fa1..35b1e4c94 100644 --- a/src/Generating/Noise3DGenerator.h +++ b/src/Generating/Noise3DGenerator.h @@ -144,8 +144,8 @@ public: void Initialize(cIniFile & a_IniFile); protected: - /** Number of columns around the pixel to query for biomes for averaging. */ - static const int AVERAGING_SIZE = 5; + /** Number of columns around the pixel to query for biomes for averaging. Must be less than or equal to 16. */ + static const int AVERAGING_SIZE = 9; /** Type used for a single parameter across the entire (downscaled) chunk. */ typedef NOISE_DATATYPE ChunkParam[5 * 5]; |