Almost all packets' handling is now rewritten not to use cPacket descendants elsewhere than in cClientHandle.
git-svn-id: http://mc-server.googlecode.com/svn/trunk@761 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -148,18 +148,17 @@ void cPickup::Tick(float a_Dt)
|
||||
return;
|
||||
}
|
||||
|
||||
if(!m_bCollected)
|
||||
if (!m_bCollected)
|
||||
{
|
||||
HandlePhysics( a_Dt );
|
||||
HandlePhysics(a_Dt);
|
||||
}
|
||||
|
||||
if( !m_bReplicated || m_bDirtyPosition )
|
||||
if (!m_bReplicated || m_bDirtyPosition)
|
||||
{
|
||||
MoveToCorrectChunk();
|
||||
m_bReplicated = true;
|
||||
m_bDirtyPosition = false;
|
||||
cPacket_TeleportEntity TeleportEntity( this );
|
||||
GetWorld()->BroadcastToChunk( m_ChunkX, m_ChunkY, m_ChunkZ, TeleportEntity );
|
||||
GetWorld()->BroadcastTeleportEntity(*this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user