diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-06-19 18:11:24 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-06-19 20:18:44 +0200 |
commit | 9201c7be7a77a77cf0f8f2c1cf5019d8969393c8 (patch) | |
tree | 53faea46596c8e438de1a8051c5d8e0e642c491c /src/Chunk.cpp | |
parent | MSVC Debug builds: Added operator new redirection to provide more info. (#3781) (diff) | |
download | cuberite-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 '')
-rw-r--r-- | src/Chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index b6576486c..849b0e2f5 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1139,7 +1139,7 @@ bool cChunk::GrowTallGrass(int a_RelX, int a_RelY, int a_RelZ) default: return false; } return UnboundedRelFastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_BIG_FLOWER, LargeFlowerMeta) && - UnboundedRelFastSetBlock(a_RelX, a_RelY + 1, a_RelZ, E_BLOCK_BIG_FLOWER, 8); + UnboundedRelFastSetBlock(a_RelX, a_RelY + 1, a_RelZ, E_BLOCK_BIG_FLOWER, 0x8 | LargeFlowerMeta); } |