diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2020-07-27 23:12:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 23:12:53 +0200 |
commit | f1e6ccd798b643308c2b468fc081bd2ad552c840 (patch) | |
tree | bfa380e1b81ab848766becff8322e783e4dcde1a /src/Section.cpp | |
parent | Merge pull request #40 from LaG1924/lua-scripting (diff) | |
parent | Support for non-overworld dimensions (diff) | |
download | AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar.gz AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar.bz2 AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar.lz AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar.xz AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.tar.zst AltCraft-f1e6ccd798b643308c2b468fc081bd2ad552c840.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Section.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Section.cpp b/src/Section.cpp index 29a6a0e..4a15c58 100644 --- a/src/Section.cpp +++ b/src/Section.cpp @@ -42,7 +42,10 @@ Section::Section(Vector pos, unsigned char bitsPerBlock, std::vector<unsigned sh this->block = std::move(blockData); this->palette = std::move(palette); std::copy(lightData.begin(), lightData.end(), light); - std::copy(skyData.begin(), skyData.end(), sky); + if (!skyData.empty()) + std::copy(skyData.begin(), skyData.end(), sky); + else + memset(sky, 0, sizeof(sky)); hash = -1; CalculateHash(); |