mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
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:
parent
72bd485e67
commit
2e4544fc5a
1 changed files with 1 additions and 1 deletions
|
|
@ -988,7 +988,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
SendPacket(0x04, concatBytes(
|
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 }));
|
new byte[] { onGround ? (byte)1 : (byte)0 }));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue