mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add command to check player health and saturation
This commit is contained in:
parent
fe020c74c7
commit
975e6d4daa
5 changed files with 31 additions and 8 deletions
|
|
@ -725,10 +725,10 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
break;
|
||||
case PacketIncomingType.UpdateHealth:
|
||||
float health = dataTypes.ReadNextFloat(packetData);
|
||||
// don't need them
|
||||
dataTypes.ReadNextVarInt(packetData);
|
||||
int Food = dataTypes.ReadNextVarInt(packetData);
|
||||
// Food Saturation, not useful
|
||||
dataTypes.ReadNextFloat(packetData);
|
||||
handler.OnUpdateHealth(health);
|
||||
handler.OnUpdateHealth(health, Food);
|
||||
break;
|
||||
default:
|
||||
return false; //Ignored packet
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue