diff options
author | Samuel Barney <samjbarney@gmail.com> | 2015-08-19 18:45:53 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2015-08-19 18:48:21 +0200 |
commit | cc83c4641d50818bf4fd830653438515ed5264d3 (patch) | |
tree | d4c4ebe5a88eaeba8ce9d53122c9eb92e297870c /src/Blocks/BlockNetherWart.h | |
parent | Merge pull request #2439 from cuberite/AppveyorYml (diff) | |
download | cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.gz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.bz2 cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.lz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.xz cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.tar.zst cuberite-cc83c4641d50818bf4fd830653438515ed5264d3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockNetherWart.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Blocks/BlockNetherWart.h b/src/Blocks/BlockNetherWart.h index 6a76e0828..b10150a92 100644 --- a/src/Blocks/BlockNetherWart.h +++ b/src/Blocks/BlockNetherWart.h @@ -1,7 +1,7 @@ #pragma once -#include "BlockHandler.h" +#include "BlockPlant.h" #include "../FastRandom.h" #include "../World.h" @@ -10,11 +10,12 @@ class cBlockNetherWartHandler : - public cBlockHandler + public cBlockPlant { + typedef cBlockPlant Super; public: cBlockNetherWartHandler(BLOCKTYPE a_BlockType) - : cBlockHandler(a_BlockType) + : Super(a_BlockType, false) { } @@ -36,7 +37,7 @@ public: virtual void OnUpdate(cChunkInterface & cChunkInterface, cWorldInterface & a_WorldInterface, cBlockPluginInterface & a_PluginInterface, cChunk & a_Chunk, int a_RelX, int a_RelY, int a_RelZ) override { NIBBLETYPE Meta = a_Chunk.GetMeta(a_RelX, a_RelY, a_RelZ); - if (Meta < 7) + if ((Meta < 7) && (CanGrow(a_Chunk, a_RelX, a_RelY, a_RelZ) == paGrowth)) { a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, ++Meta); } |