TU19: merge Minecraft.World/WorldGen

This commit is contained in:
Tropical
2026-03-21 17:45:10 -05:00
parent eb23fc1a83
commit 0f280b5ed3
108 changed files with 3505 additions and 957 deletions

View File

@@ -43,7 +43,8 @@ bool SandFeature::place(Level* level, Random* random, int x, int y, int z) {
for (int yy = y - yr; yy <= y + yr; yy++) {
int t = level->getTile(xx, yy, zz);
if (t == Tile::dirt_Id || t == Tile::grass_Id) {
level->setTileNoUpdate(xx, yy, zz, tile);
level->setTileAndData(xx, yy, zz, tile, 0,
Tile::UPDATE_CLIENTS);
}
}
}