From 894f6e02d4aadec58240dc66ad0b8c8f41c5e90a Mon Sep 17 00:00:00 2001 From: "admin@omencraft.com" Date: Mon, 7 Nov 2011 01:41:54 +0000 Subject: Added three new packets and cleaned up cPacket_Thunderbolt.cpp... cPacket_BlockAction, cPacket_Explosion, and cPacket_SoundEffect. git-svn-id: http://mc-server.googlecode.com/svn/trunk@70 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/packets/cPacket_Thunderbolt.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'source/packets/cPacket_Thunderbolt.cpp') diff --git a/source/packets/cPacket_Thunderbolt.cpp b/source/packets/cPacket_Thunderbolt.cpp index dd61bc815..48e8f1573 100644 --- a/source/packets/cPacket_Thunderbolt.cpp +++ b/source/packets/cPacket_Thunderbolt.cpp @@ -4,17 +4,12 @@ cPacket_Thunderbolt::cPacket_Thunderbolt( const cPacket_Thunderbolt & a_Copy ) { m_PacketID = E_THUNDERBOLT; m_UniqueID = 237183; //just a random Ent ID. I don't think this matters at all. - m_Unknown = true; + m_Unknown = true; m_xLBPos = a_Copy.m_xLBPos; m_yLBPos = a_Copy.m_yLBPos; m_zLBPos = a_Copy.m_zLBPos; -printf("blot-packet %i %i %i\n", m_xLBPos,m_yLBPos,m_zLBPos); - - - } - bool cPacket_Thunderbolt::Send(cSocket & a_Socket) { unsigned int TotalSize = c_Size; @@ -28,11 +23,6 @@ bool cPacket_Thunderbolt::Send(cSocket & a_Socket) AppendInteger ( m_yLBPos*32, Message, i ); AppendInteger ( m_zLBPos*32, Message, i ); - for( unsigned int iii = 1; iii < TotalSize; ++iii ){ - - printf("packetdata %i\n", (int)Message[iii]); - } - bool RetVal = !cSocket::IsSocketError( SendData( a_Socket, Message, TotalSize, 0 ) ); delete [] Message; return RetVal; -- cgit v1.2.3