diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-03 21:55:16 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-03 21:55:16 +0100 |
commit | ad89cf88ba997651257412594cdd88e84a525a19 (patch) | |
tree | 7706bc9b0b9ae25cbb4b2b097e3c27bed5ba2e30 /source/cWorldGenerator_Test.cpp | |
parent | That should not have been committed... (diff) | |
download | cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar.gz cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar.bz2 cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar.lz cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar.xz cuberite-ad89cf88ba997651257412594cdd88e84a525a19.tar.zst cuberite-ad89cf88ba997651257412594cdd88e84a525a19.zip |
Diffstat (limited to 'source/cWorldGenerator_Test.cpp')
-rw-r--r-- | source/cWorldGenerator_Test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cWorldGenerator_Test.cpp b/source/cWorldGenerator_Test.cpp index 7f0c58bb8..37ac9025c 100644 --- a/source/cWorldGenerator_Test.cpp +++ b/source/cWorldGenerator_Test.cpp @@ -12,9 +12,9 @@ void cWorldGenerator_Test::GenerateTerrain(int a_ChunkX, int a_ChunkY, int a_ChunkZ, char * a_BlockData)
{
memset(a_BlockData, E_BLOCK_DIRT, cChunk::c_NumBlocks);
- for(int x = 0; x < 16; x++)
+ for(int x = 0; x < cChunk::c_ChunkWidth; x++)
{
- for(int z = 0; z < 16; z++)
+ for(int z = 0; z < cChunk::c_ChunkWidth; z++)
{
a_BlockData[MakeIndex(x, 0, z)] = E_BLOCK_BEDROCK;
}
|