Files
cuberite-2a/source/packets/cPacket_NamedEntitySpawn.cpp
T

35 lines
786 B
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
2011-10-03 18:41:19 +00:00
#include "cPacket_NamedEntitySpawn.h"
void cPacket_NamedEntitySpawn::Serialize(AString & a_Data) const
2011-10-03 18:41:19 +00:00
{
short CurrentItem = m_CurrentItem;
2012-02-19 23:00:00 +00:00
ASSERT(CurrentItem >= 0);
if (CurrentItem <= 0)
{
CurrentItem = 0;
// Fix, to make sure no invalid values are sent.
// WARNING: HERE ITS 0, BUT IN EQUIP PACKET ITS -1 !!
}
AppendByte (a_Data, m_PacketID);
AppendInteger (a_Data, m_UniqueID);
AppendString16(a_Data, m_PlayerName);
AppendInteger (a_Data, m_PosX);
AppendInteger (a_Data, m_PosY);
AppendInteger (a_Data, m_PosZ);
AppendByte (a_Data, m_Rotation);
AppendByte (a_Data, m_Pitch);
AppendShort (a_Data, CurrentItem);
2011-10-03 18:41:19 +00:00
}