Update NetherWartTile.cpp

This commit is contained in:
DeadVoxelx
2026-05-09 14:57:56 -04:00
committed by GitHub
parent b9a01aa234
commit a30abb6e05

View File

@@ -34,11 +34,15 @@ void NetherWartTile::tick(Level *level, int x, int y, int z, Random *random)
int age = level->getData(x, y, z);
if (age < MAX_AGE)
{
//Biome *biome = biomeSource->getBiome(x, z);
//if (dynamic_cast<HellBiome *>(biome) != NULL)
//{
if (random->nextInt(10) == 0)
{
age++;
level->setData(x, y, z, age, Tile::UPDATE_CLIENTS);
}
//}
}
Bush::tick(level, x, y, z, random);