Bulk addition of constant visibilities

thanks PhpStorm inspections plugin for annoying the shit out of me until
I did this.
This commit is contained in:
Dylan K. Taylor
2017-11-21 14:44:10 +00:00
parent 3f854127ca
commit 74b074753f
210 changed files with 1939 additions and 1939 deletions

View File

@ -30,12 +30,12 @@ use pocketmine\math\Vector3;
use pocketmine\network\mcpe\NetworkSession;
class MovePlayerPacket extends DataPacket{
const NETWORK_ID = ProtocolInfo::MOVE_PLAYER_PACKET;
public const NETWORK_ID = ProtocolInfo::MOVE_PLAYER_PACKET;
const MODE_NORMAL = 0;
const MODE_RESET = 1;
const MODE_TELEPORT = 2;
const MODE_PITCH = 3; //facepalm Mojang
public const MODE_NORMAL = 0;
public const MODE_RESET = 1;
public const MODE_TELEPORT = 2;
public const MODE_PITCH = 3; //facepalm Mojang
/** @var int */
public $entityRuntimeId;