diff options
author | madmaxoft <github@xoft.cz> | 2014-08-04 13:20:16 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-04 13:20:29 +0200 |
commit | 7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a (patch) | |
tree | 31ce509c35c190aab82c86b3252f59b8acc74355 /src/Generating/StructGen.cpp | |
parent | BasicStyleCheck: Dividers are exactly 80 slashes. (diff) | |
download | cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar.gz cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar.bz2 cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar.lz cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar.xz cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.tar.zst cuberite-7bfb0b05d0514c47095ba3ec8ebb6a1073d9962a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/StructGen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Generating/StructGen.cpp b/src/Generating/StructGen.cpp index 054eec345..f7e609353 100644 --- a/src/Generating/StructGen.cpp +++ b/src/Generating/StructGen.cpp @@ -585,10 +585,10 @@ void cStructGenDirectOverhangs::GenFinish(cChunkDesc & a_ChunkDesc) // First update the high floor: for (int z = 0; z <= 16 / INTERPOL_Z; z++) for (int x = 0; x <= 16 / INTERPOL_X; x++) { - FloorHi[INTERPOL_X * x + 17 * INTERPOL_Z * z] = + FloorHi[INTERPOL_X * x + 17 * INTERPOL_Z * z] = ( m_Noise1.IntNoise3DInt(BaseX + INTERPOL_X * x, Segment + SEGMENT_HEIGHT, BaseZ + INTERPOL_Z * z) * - m_Noise2.IntNoise3DInt(BaseX + INTERPOL_Z * x, Segment + SEGMENT_HEIGHT, BaseZ + INTERPOL_Z * z) / - 256; + m_Noise2.IntNoise3DInt(BaseX + INTERPOL_Z * x, Segment + SEGMENT_HEIGHT, BaseZ + INTERPOL_Z * z) / 256 + ); } // for x, z - FloorLo[] LinearUpscale2DArrayInPlace<17, 17, INTERPOL_X, INTERPOL_Z>(FloorHi); |