summaryrefslogtreecommitdiffstats
path: root/source/Chunk.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-18 20:00:50 +0200
committermadmaxoft <github@xoft.cz>2013-08-18 20:00:50 +0200
commit861d5c75c968ab1fa5fbb3388b02ebd2e85afc56 (patch)
tree4d5cf06aac0a07418fbb0e85f781558810690cba /source/Chunk.cpp
parentFixed piston code griefing damage. (diff)
downloadcuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar.gz
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar.bz2
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar.lz
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar.xz
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.tar.zst
cuberite-861d5c75c968ab1fa5fbb3388b02ebd2e85afc56.zip
Diffstat (limited to '')
-rw-r--r--source/Chunk.cpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/source/Chunk.cpp b/source/Chunk.cpp
index 7bff3fdc9..62d411b0c 100644
--- a/source/Chunk.cpp
+++ b/source/Chunk.cpp
@@ -1607,61 +1607,6 @@ void cChunk::FastSetBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockT
-void cChunk::SetServerBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta)
-{
- ASSERT(!((a_RelX < 0) || (a_RelX >= Width) || (a_RelY < 0) || (a_RelY >= Height) || (a_RelZ < 0) || (a_RelZ >= Width)));
-
- ASSERT(IsValid());
-
- const int index = MakeIndexNoCheck(a_RelX, a_RelY, a_RelZ);
- const BLOCKTYPE OldBlockType = cChunkDef::GetBlock(m_BlockTypes, index);
- const BLOCKTYPE OldBlockMeta = GetNibble(m_BlockMeta, index);
- if ((OldBlockType == a_BlockType) && (OldBlockMeta == a_BlockMeta))
- {
- return;
- }
-
- MarkDirty();
-
- m_BlockTypes[index] = a_BlockType;
-
- SetNibble(m_BlockMeta, index, a_BlockMeta);
-
- // ONLY recalculate lighting if it's necessary!
- if(
- (g_BlockLightValue[OldBlockType ] != g_BlockLightValue[a_BlockType]) ||
- (g_BlockSpreadLightFalloff[OldBlockType] != g_BlockSpreadLightFalloff[a_BlockType]) ||
- (g_BlockTransparent[OldBlockType] != g_BlockTransparent[a_BlockType])
- )
- {
- m_IsLightValid = false;
- }
-
- // Update heightmap, if needed:
- if (a_RelY >= m_HeightMap[a_RelX + a_RelZ * Width])
- {
- if (a_BlockType != E_BLOCK_AIR)
- {
- m_HeightMap[a_RelX + a_RelZ * Width] = (unsigned char)a_RelY;
- }
- else
- {
- for (int y = a_RelY - 1; y > 0; --y)
- {
- if (m_BlockTypes[MakeIndexNoCheck(a_RelX, y, a_RelZ)] != E_BLOCK_AIR)
- {
- m_HeightMap[a_RelX + a_RelZ * Width] = (unsigned char)y;
- break;
- }
- } // for y - column in m_BlockData
- }
- }
-}
-
-
-
-
-
void cChunk::SendBlockTo(int a_RelX, int a_RelY, int a_RelZ, cClientHandle * a_Client)
{
// The coords must be valid, because the upper level already does chunk lookup. No need to check them again.