EmotePacket: make FLAG_SERVER constant public

This commit is contained in:
Dylan K. Taylor 2020-07-10 20:02:32 +01:00
parent 4ae3fd7734
commit cd022f1592

View File

@ -30,7 +30,7 @@ use pocketmine\network\mcpe\NetworkSession;
class EmotePacket extends DataPacket/* implements ClientboundPacket, ServerboundPacket*/{
public const NETWORK_ID = ProtocolInfo::EMOTE_PACKET;
private const FLAG_SERVER = 1 << 0;
public const FLAG_SERVER = 1 << 0;
/** @var int */
private $entityRuntimeId;