diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-14 19:05:00 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-14 19:05:00 +0200 |
commit | dd554175a42060bcab425231bef5c33977025c68 (patch) | |
tree | e50375d829c9fb0d1f51e585e7b0de151f7a3083 /source/Generating/ChunkGenerator.cpp | |
parent | Fixed the bucket handling code trying to simulate at the wrong coords (client sends all coords as -1 to signify "item use") (diff) | |
download | cuberite-dd554175a42060bcab425231bef5c33977025c68.tar cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.gz cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.bz2 cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.lz cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.xz cuberite-dd554175a42060bcab425231bef5c33977025c68.tar.zst cuberite-dd554175a42060bcab425231bef5c33977025c68.zip |
Diffstat (limited to 'source/Generating/ChunkGenerator.cpp')
-rw-r--r-- | source/Generating/ChunkGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Generating/ChunkGenerator.cpp b/source/Generating/ChunkGenerator.cpp index eca24c6a7..b4bd1410d 100644 --- a/source/Generating/ChunkGenerator.cpp +++ b/source/Generating/ChunkGenerator.cpp @@ -271,7 +271,7 @@ void cChunkGenerator::InitCompositionGen(cIniFile & a_IniFile) BLOCKTYPE BlockBottom = GetIniBlock(a_IniFile, "Generator", "ClassicBlockBottom", "stone"); BLOCKTYPE BlockBeach = GetIniBlock(a_IniFile, "Generator", "ClassicBlockBeach", "sand"); BLOCKTYPE BlockBeachBottom = GetIniBlock(a_IniFile, "Generator", "ClassicBlockBeachBottom", "sandstone"); - BLOCKTYPE BlockSea = GetIniBlock(a_IniFile, "Generator", "ClassicBlockSea", "9"); + BLOCKTYPE BlockSea = GetIniBlock(a_IniFile, "Generator", "ClassicBlockSea", "stationarywater"); m_CompositionGen = new cCompoGenClassic( SeaLevel, BeachHeight, BeachDepth, BlockTop, BlockMiddle, BlockBottom, BlockBeach, BlockBeachBottom, BlockSea |