diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-03-24 17:18:14 +0100 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-04-23 08:54:34 +0200 |
commit | 77bf00a5994cc4cbbca57d70fb8e761a2ea2757f (patch) | |
tree | 1d4f49943813a5309ef081ae8f9e696a388ba8a4 /src/Chunk.cpp | |
parent | Updated readme to inform that clang 3.4 is minimum required version. (#3158) (diff) | |
download | cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar.gz cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar.bz2 cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar.lz cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar.xz cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.tar.zst cuberite-77bf00a5994cc4cbbca57d70fb8e761a2ea2757f.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index ae3d218d5..ff0841440 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -2594,16 +2594,6 @@ bool cChunk::GetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_ BLOCKTYPE cChunk::GetBlock(int a_RelX, int a_RelY, int a_RelZ) const { - if ( - (a_RelX < 0) || (a_RelX >= Width) || - (a_RelY < 0) || (a_RelY >= Height) || - (a_RelZ < 0) || (a_RelZ >= Width) - ) - { - ASSERT(!"GetBlock(x, y, z) out of bounds!"); - return 0; // Clip - } - return m_ChunkData.GetBlock(a_RelX, a_RelY, a_RelZ); } |