0x19 C19PacketResourcePackStatus

Client reports the resource pack load status to the server. Sent after S48PacketResourcePackSend.

Serverbound (Client → Server) · PLAY · net/minecraft/network/play/client/C19PacketResourcePackStatus.java
resourcepackdownload

Fields

FieldTypeDescription
hashStringSHA-1 hash of the resource pack (from S48)
statusVarInt Enum0=loaded, 1=declined, 2=failedDownload, 3=accepted

Wire Encoding

FieldTypeNotes
HashStringSHA-1 hash of the pack
ResultVarInt Enum0=loaded, 1=declined, 2=failedDownload, 3=accepted

MCP References

MCPNetHandlerPlayServer.processResourcePackStatus()

Handler Interface

HNDINetHandlerPlayServer

Notes

The server can force a resource pack. If the client declines, the server may kick the player.

implementation Implementation Cases

AntiResourcePack

Cancel resource pack downloads or fake acceptance.

Vanilla hook: EventSendPacket
← Back to all packets