summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-04-26 03:18:46 +0200
committerarchshift <admin@archshift.com>2014-04-26 03:18:46 +0200
commitb2f40a7a114d543b6a88a8251f995f4be67e6157 (patch)
tree1b57eabd9c57a0d2217cb1789238ea2c3104ace2 /src/ChunkMap.cpp
parentFixed a couple more warnings. (diff)
downloadcuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar.gz
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar.bz2
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar.lz
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar.xz
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.tar.zst
cuberite-b2f40a7a114d543b6a88a8251f995f4be67e6157.zip
Diffstat (limited to 'src/ChunkMap.cpp')
-rw-r--r--src/ChunkMap.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp
index ed9103174..0fb6988b5 100644
--- a/src/ChunkMap.cpp
+++ b/src/ChunkMap.cpp
@@ -346,9 +346,8 @@ void cChunkMap::BroadcastAttachEntity(const cEntity & a_Entity, const cEntity *
void cChunkMap::BroadcastBlockAction(int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType, const cClientHandle * a_Exclude)
{
cCSLock Lock(m_CSLayers);
- int x, y, z, ChunkX, ChunkZ;
+ int x, z, ChunkX, ChunkZ;
x = a_BlockX;
- y = a_BlockY;
z = a_BlockZ;
cChunkDef::BlockToChunk(x, z, ChunkX, ChunkZ);
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ZERO_CHUNK_Y, ChunkZ);
@@ -1146,9 +1145,8 @@ BLOCKTYPE cChunkMap::GetBlock(int a_BlockX, int a_BlockY, int a_BlockZ)
// First check if it isn't queued in the m_FastSetBlockQueue:
{
int X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
- int ChunkX, ChunkY, ChunkZ;
+ int ChunkX, ChunkZ;
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
- ChunkY = 0;
cCSLock Lock(m_CSFastSetBlock);
for (sSetBlockList::iterator itr = m_FastSetBlockQueue.begin(); itr != m_FastSetBlockQueue.end(); ++itr)
{