From b75758e35e0f35b5b185b25f39b83642ed41a900 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 20 May 2020 13:39:37 +0100 Subject: [PATCH] MoveActorDeltaPacket: added missing flags --- src/pocketmine/network/mcpe/protocol/MoveActorDeltaPacket.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pocketmine/network/mcpe/protocol/MoveActorDeltaPacket.php b/src/pocketmine/network/mcpe/protocol/MoveActorDeltaPacket.php index 1728b936d..ffae8449f 100644 --- a/src/pocketmine/network/mcpe/protocol/MoveActorDeltaPacket.php +++ b/src/pocketmine/network/mcpe/protocol/MoveActorDeltaPacket.php @@ -36,6 +36,9 @@ class MoveActorDeltaPacket extends DataPacket{ public const FLAG_HAS_ROT_X = 0x08; public const FLAG_HAS_ROT_Y = 0x10; public const FLAG_HAS_ROT_Z = 0x20; + public const FLAG_GROUND = 0x40; + public const FLAG_TELEPORT = 0x80; + public const FLAG_FORCE_MOVE_LOCAL_ENTITY = 0x100; /** @var int */ public $entityRuntimeId;