diff options
author | madmaxoft <github@xoft.cz> | 2014-06-16 22:53:08 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-06-16 22:53:08 +0200 |
commit | d6979ad95d2430e78c8e3ccef376704516814da0 (patch) | |
tree | bdbec9782b0987327babbc63f35545221662a2a8 | |
parent | Fixed MSVC builds. (diff) | |
download | cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar.gz cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar.bz2 cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar.lz cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar.xz cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.tar.zst cuberite-d6979ad95d2430e78c8e3ccef376704516814da0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/LightingThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LightingThread.cpp b/src/LightingThread.cpp index d3873ab3c..33bc08467 100644 --- a/src/LightingThread.cpp +++ b/src/LightingThread.cpp @@ -23,7 +23,7 @@ class cReader : BLOCKTYPE * OutputRows = m_BlockTypes; int InputIdx = 0; int OutputIdx = m_ReadingChunkX + m_ReadingChunkZ * cChunkDef::Width * 3; - int MaxHeight = std::min(cChunkDef::Height, m_MaxHeight + 16); // Need 16 blocks above the highest + int MaxHeight = std::min(+cChunkDef::Height, m_MaxHeight + 16); // Need 16 blocks above the highest for (int y = 0; y < MaxHeight; y++) { for (int z = 0; z < cChunkDef::Width; z++) |