From 427e582d5fcbd5025a81a4e89ccada47877ccc64 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 19 Aug 2012 19:42:32 +0000 Subject: 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 --- source/packets/cPacket_TeleportEntity.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'source/packets/cPacket_TeleportEntity.h') diff --git a/source/packets/cPacket_TeleportEntity.h b/source/packets/cPacket_TeleportEntity.h index d0504f901..5203badb6 100644 --- a/source/packets/cPacket_TeleportEntity.h +++ b/source/packets/cPacket_TeleportEntity.h @@ -18,9 +18,12 @@ public: , m_PosZ( 0 ) , m_Rotation( 0 ) , m_Pitch( 0 ) - { m_PacketID = E_ENT_TELEPORT; } - virtual cPacket* Clone() const { return new cPacket_TeleportEntity(*this); } - cPacket_TeleportEntity(cEntity* a_Client); + { + m_PacketID = E_ENT_TELEPORT; + } + + virtual cPacket * Clone() const { return new cPacket_TeleportEntity(*this); } + cPacket_TeleportEntity(const cEntity & a_Entity); virtual void Serialize(AString & a_Data) const override; -- cgit v1.2.3