1
0

Merge pull request #2743 from SafwatHalaby/wart

Set overgrown wart age to 3
This commit is contained in:
Safwat Halaby 2015-12-13 16:12:39 +02:00
commit fec522aa03

View File

@ -41,6 +41,10 @@ public:
{
a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, ++Meta);
}
else if (Meta > 3) // In older versions of cuberite, there was a bug which made wart grow too much. This check fixes previously saved buggy warts.
{
a_Chunk.FastSetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_NETHER_WART, 3);
}
}
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, const cChunk & a_Chunk) override