diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-09-19 14:44:51 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-09-19 14:44:51 +0200 |
commit | d677440f6d8487a4eca613803aff0e091dcd71f3 (patch) | |
tree | 5b10066d7187922094c8a69961f5665af8c00bca /src | |
parent | 1e14dabc2d9771af24420b669ac43f16600d769c (diff) | |
download | MinedMap-d677440f6d8487a4eca613803aff0e091dcd71f3.tar MinedMap-d677440f6d8487a4eca613803aff0e091dcd71f3.zip |
Chunk: fix check for chunks with missing light data
Diffstat (limited to 'src')
-rw-r--r-- | src/World/Chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World/Chunk.cpp b/src/World/Chunk.cpp index cdc2806..dae66ff 100644 --- a/src/World/Chunk.cpp +++ b/src/World/Chunk.cpp @@ -99,7 +99,7 @@ void Chunk::parseChunk() { void Chunk::analyzeChunk() { std::shared_ptr<const NBT::ByteTag> lightPopulatedTag = level->get<NBT::ByteTag>("LightPopulated"); - if (!lightPopulatedTag && lightPopulatedTag->getValue()) + if (!(lightPopulatedTag && lightPopulatedTag->getValue())) throw std::invalid_argument("light data missing"); sections = assertValue(level->get<NBT::ListTag<NBT::CompoundTag>>("Sections")); |