Fix acacia and dark oak leaves dropping the wrong sapling type

This commit is contained in:
piebot 2026-03-22 02:52:01 +03:00
parent 8572c8bcd7
commit 4d5941c014

View file

@ -115,7 +115,7 @@ void LeafTile2::spawnResources(Level *level, int x, int y, int z, int data, floa
{
popResource(level, x, y, z, std::make_shared<ItemInstance>(Tile::sapling_Id, 1, data & 3));
popResource(level, x, y, z, std::make_shared<ItemInstance>(Tile::sapling_Id, 1, (data & 3) + 4));
}