Fix location sendback (Item pickup!)

Location is now properly sent back to the server
Item are now properly being picked up
(Need to enable movements in INI file)
This commit is contained in:
ORelio 2015-11-29 20:19:43 +01:00
parent 72bd485e67
commit 2e4544fc5a

View file

@ -988,7 +988,7 @@ namespace MinecraftClient.Protocol.Handlers
try
{
SendPacket(0x04, concatBytes(
getDouble(location.X), getDouble(location.X), getDouble(location.X),
getDouble(location.X), getDouble(location.Y), getDouble(location.Z),
new byte[] { onGround ? (byte)1 : (byte)0 }));
return true;
}