From 59d80a0b745066bf9f284be841acd39bebea8a10 Mon Sep 17 00:00:00 2001 From: AkmalFairuz Date: Thu, 15 Aug 2024 12:09:00 +0700 Subject: [PATCH] Register new packets --- src/PacketPool.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/PacketPool.php b/src/PacketPool.php index 5d50de2f..7273a2a4 100644 --- a/src/PacketPool.php +++ b/src/PacketPool.php @@ -232,6 +232,11 @@ public function __construct(){ $this->registerPacket(new PlayerToggleCrafterSlotRequestPacket()); $this->registerPacket(new SetPlayerInventoryOptionsPacket()); $this->registerPacket(new SetHudPacket()); + $this->registerPacket(new ClientboundCloseFormPacket()); + $this->registerPacket(new ServerboundLoadingScreenPacket()); + $this->registerPacket(new JigsawStructureDataPacket()); + $this->registerPacket(new CurrentStructureFeaturePacket()); + $this->registerPacket(new ServerboundDiagnosticsPacket()); } public function registerPacket(Packet $packet) : void{