diff options
Diffstat (limited to 'source/packets/cPacket_Respawn.cpp')
-rw-r--r-- | source/packets/cPacket_Respawn.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/packets/cPacket_Respawn.cpp b/source/packets/cPacket_Respawn.cpp index e12ea1ace..1bc18d500 100644 --- a/source/packets/cPacket_Respawn.cpp +++ b/source/packets/cPacket_Respawn.cpp @@ -2,7 +2,7 @@ bool cPacket_Respawn::Send(cSocket & a_Socket)
{
- unsigned int TotalSize = c_Size;
+ unsigned int TotalSize = c_Size + m_LevelType.size() * sizeof(short);
char* Message = new char[TotalSize];
@@ -13,6 +13,7 @@ bool cPacket_Respawn::Send(cSocket & a_Socket) AppendByte ( m_CreativeMode, Message, i );
AppendShort ( m_WorldHeight, Message, i );
AppendLong ( m_MapSeed, Message, i );
+ AppendString16 ( m_LevelType, Message, i );
bool RetVal = !cSocket::IsSocketError( SendData( a_Socket, Message, TotalSize, 0 ) );
delete [] Message;
@@ -27,5 +28,6 @@ bool cPacket_Respawn::Parse(cSocket & a_Socket) if( !ReadByte( m_CreativeMode ) ) return false;
if( !ReadShort( m_WorldHeight ) ) return false;
if( !ReadLong( m_MapSeed ) ) return false;
+ if( !ReadString16( m_LevelType ) ) return false;
return true;
}
\ No newline at end of file |