Added CompletedUsingItemPacket

This commit is contained in:
Stephen
2019-11-05 21:19:49 -05:00
parent 4ea907ae1a
commit 4e9a2b6d8c
3 changed files with 75 additions and 0 deletions

View File

@ -23,6 +23,7 @@ declare(strict_types=1);
namespace pocketmine\network\mcpe\protocol;
use pocketmine\network\CompletedUsingItemPacket;
use pocketmine\utils\Binary;
use pocketmine\utils\BinaryDataException;
@ -166,6 +167,7 @@ class PacketPool{
static::registerPacket(new UpdateBlockPropertiesPacket());
static::registerPacket(new ClientCacheBlobStatusPacket());
static::registerPacket(new ClientCacheMissResponsePacket());
static::registerPacket(new CompletedUsingItemPacket());
}
/**