summaryrefslogtreecommitdiffstats
path: root/src/Generating
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2017-06-19 18:11:24 +0200
committerLukas Pioch <lukas@zgow.de>2017-06-19 20:18:44 +0200
commit9201c7be7a77a77cf0f8f2c1cf5019d8969393c8 (patch)
tree53faea46596c8e438de1a8051c5d8e0e642c491c /src/Generating
parentMSVC Debug builds: Added operator new redirection to provide more info. (#3781) (diff)
downloadcuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar.gz
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar.bz2
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar.lz
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar.xz
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.tar.zst
cuberite-9201c7be7a77a77cf0f8f2c1cf5019d8969393c8.zip
Diffstat (limited to 'src/Generating')
-rw-r--r--src/Generating/FinishGen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Generating/FinishGen.cpp b/src/Generating/FinishGen.cpp
index 81ed63924..df8d0929d 100644
--- a/src/Generating/FinishGen.cpp
+++ b/src/Generating/FinishGen.cpp
@@ -260,7 +260,7 @@ void cFinishGenClumpTopBlock::TryPlaceFoliageClump(cChunkDesc & a_ChunkDesc, int
a_ChunkDesc.SetBlockTypeMeta(x, Top + 1, z, a_BlockType, a_BlockMeta);
if (a_IsDoubleTall)
{
- a_ChunkDesc.SetBlockTypeMeta(x, Top + 2, z, E_BLOCK_BIG_FLOWER, 8);
+ a_ChunkDesc.SetBlockTypeMeta(x, Top + 2, z, E_BLOCK_BIG_FLOWER, 0x8 | a_BlockMeta);
a_ChunkDesc.SetHeight(x, z, static_cast<HEIGHTTYPE>(Top + 2));
}
else
@@ -554,7 +554,7 @@ void cFinishGenTallGrass::GenFinish(cChunkDesc & a_ChunkDesc)
{
NIBBLETYPE Meta = (m_Noise.IntNoise2DInt(xx * 100, zz * 100) / 7 % 100) > 25 ? 2 : 3;
a_ChunkDesc.SetBlockTypeMeta(x, y, z, E_BLOCK_BIG_FLOWER, Meta);
- a_ChunkDesc.SetBlockTypeMeta(x, y + 1, z, E_BLOCK_BIG_FLOWER, 8);
+ a_ChunkDesc.SetBlockTypeMeta(x, y + 1, z, E_BLOCK_BIG_FLOWER, 0x8 | Meta);
a_ChunkDesc.SetHeight(x, z, static_cast<HEIGHTTYPE>(y + 1));
}
}