1
0
Fork 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
1 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public:
: Super(a_BlockType, false)
{
}
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_Meta) override
{
cFastRandom rand;
@ -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