slabs, fences, doors from TU25

This commit is contained in:
DrPerkyLegit
2026-05-23 10:28:01 -04:00
parent 43f4ea5f1f
commit 6f68cf0a20
20 changed files with 434 additions and 312 deletions

View File

@@ -95,7 +95,7 @@ bool PineFeature::place(Level *level, Random *random, int x, int y, int z)
for (int hh = 0; hh < treeHeight - 1; hh++)
{
int t = level->getTile(x, y + hh, z);
if (t == 0 || t == Tile::leaves_Id) placeBlock(level, x, y + hh, z, Tile::treeTrunk_Id, TreeTile::DARK_TRUNK);
if (t == 0 || t == Tile::leaves_Id) placeBlock(level, x, y + hh, z, Tile::treeTrunk_Id, TreeTile::SPRUCE_TRUNK);
}
return true;