diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2019-01-27 06:10:33 +0100 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2019-01-27 06:10:33 +0100 |
commit | e2479261c56c8d1a64b51ad4f084ad3c18505359 (patch) | |
tree | 5256688eaec174cebdcf873f5247ece28ec45b9c /src/Section.cpp | |
parent | Added slow GameState sync (diff) | |
download | AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.gz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.bz2 AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.lz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.xz AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.tar.zst AltCraft-e2479261c56c8d1a64b51ad4f084ad3c18505359.zip |
Diffstat (limited to 'src/Section.cpp')
-rw-r--r-- | src/Section.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Section.cpp b/src/Section.cpp index c8c67dc..29a6a0e 100644 --- a/src/Section.cpp +++ b/src/Section.cpp @@ -45,6 +45,7 @@ Section::Section(Vector pos, unsigned char bitsPerBlock, std::vector<unsigned sh std::copy(skyData.begin(), skyData.end(), sky); hash = -1; + CalculateHash(); } BlockId Section::GetBlockId(Vector pos) const { @@ -109,6 +110,7 @@ unsigned char Section::GetBlockSkyLight(Vector pos) const void Section::SetBlockId(Vector pos, BlockId value) { overrideList[pos] = value; hash = -1; + CalculateHash(); } Vector Section::GetPosition() const { |