diff options
author | Mattes D <github@xoft.cz> | 2014-07-30 07:09:33 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-30 07:09:33 +0200 |
commit | b41c8b5de7d302589f223e3c09c7e7380740d6c4 (patch) | |
tree | f39e6be30038426abac2dcd95fe25768b0ffd184 /src/Generating/Caves.cpp | |
parent | Fixed FinishGen.h types. (diff) | |
parent | Added soulsand to the terraformed list. (diff) | |
download | cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar.gz cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar.bz2 cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar.lz cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar.xz cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.tar.zst cuberite-b41c8b5de7d302589f223e3c09c7e7380740d6c4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/Caves.cpp | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/src/Generating/Caves.cpp b/src/Generating/Caves.cpp index 3b71efb57..6fc371958 100644 --- a/src/Generating/Caves.cpp +++ b/src/Generating/Caves.cpp @@ -497,29 +497,9 @@ void cCaveTunnel::ProcessChunk( int SqDist = (DifX - x) * (DifX - x) + (DifY - y) * (DifY - y) + (DifZ - z) * (DifZ - z); if (4 * SqDist <= SqRad) { - switch (cChunkDef::GetBlock(a_BlockTypes, x, y, z)) + if (cBlockInfo::CanBeTerraformed(cChunkDef::GetBlock(a_BlockTypes, x, y, z))) { - // Only carve out these specific block types - case E_BLOCK_DIRT: - case E_BLOCK_GRASS: - case E_BLOCK_STONE: - case E_BLOCK_COBBLESTONE: - case E_BLOCK_GRAVEL: - case E_BLOCK_SAND: - case E_BLOCK_SANDSTONE: - case E_BLOCK_SOULSAND: - case E_BLOCK_NETHERRACK: - case E_BLOCK_COAL_ORE: - case E_BLOCK_IRON_ORE: - case E_BLOCK_GOLD_ORE: - case E_BLOCK_DIAMOND_ORE: - case E_BLOCK_REDSTONE_ORE: - case E_BLOCK_REDSTONE_ORE_GLOWING: - { - cChunkDef::SetBlock(a_BlockTypes, x, y, z, E_BLOCK_AIR); - break; - } - default: break; + cChunkDef::SetBlock(a_BlockTypes, x, y, z, E_BLOCK_AIR); } } } // for y |