summaryrefslogtreecommitdiffstats
path: root/src/World/Chunk.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-07-24 01:33:21 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-07-24 19:26:40 +0200
commitdd432af298e0bcaf165ac826613723f1dce4b10d (patch)
treee70207e996731a5b4a46a2d2903ede07b19bba73 /src/World/Chunk.cpp
parentfed9c21f5ef44496d20b788035119860e76505f8 (diff)
downloadMinedMap-dd432af298e0bcaf165ac826613723f1dce4b10d.tar
MinedMap-dd432af298e0bcaf165ac826613723f1dce4b10d.zip
Resolve pre-1.13 block types by mapping them to 1.13 types
Diffstat (limited to 'src/World/Chunk.cpp')
-rw-r--r--src/World/Chunk.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/World/Chunk.cpp b/src/World/Chunk.cpp
index 38ca496..d4c6029 100644
--- a/src/World/Chunk.cpp
+++ b/src/World/Chunk.cpp
@@ -128,7 +128,9 @@ Chunk::Blocks Chunk::getTopLayer() const {
uint8_t id = getBlockAt(x, y, z);
uint8_t data = getDataAt(x, y, z);
- if (!Resource::BLOCK_TYPES[id][data].opaque)
+
+ const Resource::BlockType *type = Resource::LEGACY_BLOCK_TYPES.types[id][data];
+ if (!type || !type->opaque)
continue;
ret.blocks[x][z] = getBlock(x, y, z);