Update MinecraftCom.cs

This commit is contained in:
dogwatch 2013-07-18 08:02:05 -07:00
parent e6f2ef4e4f
commit e8e87049a7

View file

@ -614,8 +614,7 @@ namespace MinecraftClient
data[1] = protocolversion;
//short len
byte[] sh = new byte[2];
sh = BitConverter.GetBytes((short)username.Length);
byte[] sh = BitConverter.GetBytes((short)username.Length);
Array.Reverse(sh);
sh.CopyTo(data, 2);
@ -625,7 +624,6 @@ namespace MinecraftClient
name.CopyTo(data, 4);
//short len
sh = new byte[2];
sh = BitConverter.GetBytes((short)host.Length);
Array.Reverse(sh);
sh.CopyTo(data, 4 + (username.Length * 2));
@ -636,7 +634,6 @@ namespace MinecraftClient
bhost.CopyTo(data, 6 + (username.Length * 2));
//port
sh = new byte[4];
sh = BitConverter.GetBytes(port);
Array.Reverse(sh);
sh.CopyTo(data, 6 + (username.Length * 2) + (host.Length * 2));