Dernier commit?

This commit is contained in:
MarcEricMartel
2021-12-06 10:58:40 -05:00
parent 37825ee4c8
commit 26787fd116
13 changed files with 4 additions and 5 deletions

View File

@@ -166,7 +166,7 @@ bool World::GenerateChunk(int chx, int chy, Perlin& perlin) {
for (int x = 0; x < CHUNK_SIZE_X; ++x) // "Lacs"
for (int z = 0; z < CHUNK_SIZE_Z; ++z) {
for (int y = 0; y < 12; ++y) {
for (int y = 0; y < 13; ++y) {
if (chunk->GetBlock(x, y, z) == BTYPE_AIR)
chunk->SetBlock(x, y, z, BTYPE_ICE, this);
}