Removed unused assignments.
This commit is contained in:
parent
73edd2b961
commit
b2f40a7a11
@ -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)
|
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);
|
cCSLock Lock(m_CSLayers);
|
||||||
int x, y, z, ChunkX, ChunkZ;
|
int x, z, ChunkX, ChunkZ;
|
||||||
x = a_BlockX;
|
x = a_BlockX;
|
||||||
y = a_BlockY;
|
|
||||||
z = a_BlockZ;
|
z = a_BlockZ;
|
||||||
cChunkDef::BlockToChunk(x, z, ChunkX, ChunkZ);
|
cChunkDef::BlockToChunk(x, z, ChunkX, ChunkZ);
|
||||||
cChunkPtr Chunk = GetChunkNoGen(ChunkX, ZERO_CHUNK_Y, 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:
|
// First check if it isn't queued in the m_FastSetBlockQueue:
|
||||||
{
|
{
|
||||||
int X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
int X = a_BlockX, Y = a_BlockY, Z = a_BlockZ;
|
||||||
int ChunkX, ChunkY, ChunkZ;
|
int ChunkX, ChunkZ;
|
||||||
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
cChunkDef::AbsoluteToRelative(X, Y, Z, ChunkX, ChunkZ);
|
||||||
ChunkY = 0;
|
|
||||||
cCSLock Lock(m_CSFastSetBlock);
|
cCSLock Lock(m_CSFastSetBlock);
|
||||||
for (sSetBlockList::iterator itr = m_FastSetBlockQueue.begin(); itr != m_FastSetBlockQueue.end(); ++itr)
|
for (sSetBlockList::iterator itr = m_FastSetBlockQueue.begin(); itr != m_FastSetBlockQueue.end(); ++itr)
|
||||||
{
|
{
|
||||||
|
@ -171,7 +171,6 @@ bool cLineBlockTracer::MoveToNextBlock(void)
|
|||||||
double CoeffZ = (DestZ - m_StartZ) / m_DiffZ;
|
double CoeffZ = (DestZ - m_StartZ) / m_DiffZ;
|
||||||
if (CoeffZ < Coeff)
|
if (CoeffZ < Coeff)
|
||||||
{
|
{
|
||||||
Coeff = CoeffZ;
|
|
||||||
Direction = dirZ;
|
Direction = dirZ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -797,7 +797,6 @@ void cWSSCompact::cPAKFile::UpdateChunk2To3()
|
|||||||
++index2;
|
++index2;
|
||||||
}
|
}
|
||||||
InChunkOffset += index2 / 2;
|
InChunkOffset += index2 / 2;
|
||||||
index2 = 0;
|
|
||||||
|
|
||||||
AString Converted(ConvertedData, ExpectedSize);
|
AString Converted(ConvertedData, ExpectedSize);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user