From 115865f84506f6a206b129141cadd47d0c00666a Mon Sep 17 00:00:00 2001 From: Gargaj Date: Sat, 12 Dec 2015 00:46:01 +0100 Subject: Nether wart only ages to 3 See http://minecraft.gamepedia.com/Nether_Wart --- src/Blocks/BlockNetherWart.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Blocks/BlockNetherWart.h b/src/Blocks/BlockNetherWart.h index b10150a92..10f4aa8f4 100644 --- a/src/Blocks/BlockNetherWart.h +++ b/src/Blocks/BlockNetherWart.h @@ -23,7 +23,7 @@ public: { cFastRandom rand; - if (a_Meta == 0x7) + if (a_Meta == 0x3) { // Fully grown, drop the entire produce: a_Pickups.push_back(cItem(E_ITEM_NETHER_WART, static_cast(1 + (rand.NextInt(3) + rand.NextInt(3))) / 2, 0)); @@ -37,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) && (CanGrow(a_Chunk, a_RelX, a_RelY, a_RelZ) == paGrowth)) + if ((Meta < 3) && (CanGrow(a_Chunk, a_RelX, a_RelY, a_RelZ) == paGrowth)) { a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, ++Meta); } -- cgit v1.2.3