Removed old comment

This commit is contained in:
vis2k 2018-12-15 16:06:22 +01:00
parent d3e13c77af
commit 07000f7d47

View File

@ -6,10 +6,6 @@
namespace Mirror
{
/*
* wire protocol is a list of : size | msgType | payload
* (short) (variable) (buffer)
*/
public class NetworkConnection : IDisposable
{
NetworkIdentity m_PlayerController;
@ -205,8 +201,8 @@ protected void HandleBytes(byte[] buffer)
byte[] content;
if (Protocol.UnpackMessage(buffer, out msgType, out content))
{
if (logNetworkMessages)
{
if (logNetworkMessages)
{
if (Enum.IsDefined(typeof(MsgType), msgType))
{
// one of Mirror mesage types, display the message name