summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-05-21 19:33:54 +0200
committerTycho <work.tycho+git@gmail.com>2014-05-21 19:33:54 +0200
commitcdd3d11496d51ce6f444a2e637fee1d38e07fd09 (patch)
tree74e22a66fb6cfedda6bddd43d68c1129532e239f /src/Chunk.cpp
parentFixed issue with types not being defined for an unused parameter (diff)
downloadcuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar.gz
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar.bz2
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar.lz
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar.xz
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.tar.zst
cuberite-cdd3d11496d51ce6f444a2e637fee1d38e07fd09.zip
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r--src/Chunk.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index a986ac076..00ea33e16 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -282,10 +282,10 @@ void cChunk::SetAllData(
CalculateHeightmap(a_BlockTypes);
}
- m_ChunkBuffer.SetBlocks (a_BlockTypes);
- m_ChunkBuffer.SetMeta (a_BlockMeta);
- m_ChunkBuffer.SetLight (a_BlockLight);
- m_ChunkBuffer.SetSkyLight (a_BlockSkyLight);
+ m_ChunkBuffer.SetBlocks(a_BlockTypes);
+ m_ChunkBuffer.SetMeta(a_BlockMeta);
+ m_ChunkBuffer.SetLight(a_BlockLight);
+ m_ChunkBuffer.SetSkyLight(a_BlockSkyLight);
m_IsLightValid = (a_BlockLight != NULL) && (a_BlockSkyLight != NULL);