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

@@ -29,7 +29,7 @@ void HellFlatLevelSource::prepareHeights(int xOffs, int zOffs,
for (int yc = 0; yc < height; yc++) {
int block = 0;
if ((yc <= 6) || (yc >= 121)) {
block = Tile::hellRock_Id;
block = Tile::netherRack_Id;
}
blocks[xc << 11 | zc << 7 | yc] = (uint8_t)block;
@@ -194,3 +194,6 @@ TilePos* HellFlatLevelSource::findNearestMapFeature(
Level* level, const std::wstring& featureName, int x, int y, int z) {
return NULL;
}
void HellFlatLevelSource::recreateLogicStructuresForChunk(int chunkX,
int chunkZ) {}