Skip to content
This repository has been archived by the owner on Nov 28, 2021. It is now read-only.

Commit

Permalink
Serve air for Z >= 1
Browse files Browse the repository at this point in the history
  • Loading branch information
danopia committed Apr 20, 2011
1 parent 90d272d commit 8441db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/filestorage.cpp
Expand Up @@ -18,7 +18,7 @@ Block *MakeBlock3(char type) {
Chunk *FileStorage::GenerateChunk(Vector3 Index) {
Chunk *chunk = new Chunk(Index, Callback->ChunkSize);
printf("size: %i\n", Callback->ChunkSize);
chunk->FillWith(3);
chunk->FillWith((Index.Z > 0) ? 0 : 3);
return chunk;
}

Expand Down

0 comments on commit 8441db5

Please sign in to comment.