diff options
author | Mattes D <github@xoft.cz> | 2017-01-19 16:44:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19 16:44:44 +0100 |
commit | 35ca578f44683d2527da1097b7311ff53b22f89c (patch) | |
tree | 22c515b3b39193e39f240f0b98a469c005a82a06 /src/Chunk.cpp | |
parent | Merge pull request #3551 from cuberite/RenameTwoLocks (diff) | |
parent | Removed asserts about chunk queued. (diff) | |
download | cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar.gz cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar.bz2 cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar.lz cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar.xz cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.tar.zst cuberite-35ca578f44683d2527da1097b7311ff53b22f89c.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index f1fd5d950..c196c3fe5 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -317,7 +317,6 @@ void cChunk::SetAllData(cSetChunkData & a_SetChunkData) { ASSERT(a_SetChunkData.IsHeightMapValid()); ASSERT(a_SetChunkData.AreBiomesValid()); - ASSERT(IsQueued()); memcpy(m_BiomeMap, a_SetChunkData.GetBiomes(), sizeof(m_BiomeMap)); memcpy(m_HeightMap, a_SetChunkData.GetHeightMap(), sizeof(m_HeightMap)); |