From 9e6dd5f1f9fb7e1c772f1abb3c8fc4d265ad45f0 Mon Sep 17 00:00:00 2001 From: mark Date: Sat, 17 Oct 2009 07:28:17 +0000 Subject: [PATCH] i hate leading spaces so much --- Server/Network/MessagePump.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Server/Network/MessagePump.cs b/Server/Network/MessagePump.cs index 29cce78f4..de211e0ba 100644 --- a/Server/Network/MessagePump.cs +++ b/Server/Network/MessagePump.cs @@ -152,12 +152,12 @@ namespace Server.Network if ( !ns.Seeded ) { - if ( buffer.GetPacketID() == 0xEF ) - { - // new packet in client 6.0.5.0 replaces the traditional seed method with a seed packet - // 0xEF = 239 = multicast IP, so this should never appear in a normal seed. So this is backwards compatible with older clients. - ns.Seeded = true; - } + if ( buffer.GetPacketID() == 0xEF ) + { + // new packet in client 6.0.5.0 replaces the traditional seed method with a seed packet + // 0xEF = 239 = multicast IP, so this should never appear in a normal seed. So this is backwards compatible with older clients. + ns.Seeded = true; + } else if ( buffer.Length >= 4 ) { buffer.Dequeue( m_Peek, 0, 4 );