fix: podzol not dropping as dirt

This commit is contained in:
piebot 2026-04-21 18:48:32 +03:00
parent 1034c5258d
commit 7ceb0e4420

View file

@ -31,6 +31,9 @@ unsigned int DirtTile::getDescriptionId(int iData)
int DirtTile::getSpawnResourcesAuxValue(int data)
{
if (data == DirtTile::PODZOL) data = 0;
return data;
}