summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-05-21 21:08:34 +0200
committerTycho <work.tycho+git@gmail.com>2014-05-21 21:08:34 +0200
commit5929ffbc40d24f4e69cf12c8495d194407547c9c (patch)
tree00491fccd2db8f36db39b950508cc516600c3031 /src/Chunk.cpp
parentRenamed cChunkBuffer to cChunkData (diff)
downloadcuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar.gz
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar.bz2
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar.lz
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar.xz
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.tar.zst
cuberite-5929ffbc40d24f4e69cf12c8495d194407547c9c.zip
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r--src/Chunk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index a45ed32c1..d85b44607 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -326,9 +326,9 @@ void cChunk::SetLight(
// TODO: We might get cases of wrong lighting when a chunk changes in the middle of a lighting calculation.
// Postponing until we see how bad it is :)
- m_ChunkData.SetLight (a_BlockLight);
+ m_ChunkData.SetLight(a_BlockLight);
- m_ChunkData.SetSkyLight (a_SkyLight);
+ m_ChunkData.SetSkyLight(a_SkyLight);
m_IsLightValid = true;
}