Remove some state meta constants from API visibility

This commit is contained in:
Dylan K. Taylor 2018-09-30 14:43:55 +01:00
parent 274a4d892f
commit 74486d6880
2 changed files with 6 additions and 11 deletions

View File

@ -32,13 +32,8 @@ use pocketmine\math\Vector3;
use pocketmine\Player;
class Trapdoor extends Transparent{
public const MASK_UPPER = 0x04;
public const MASK_OPENED = 0x08;
public const MASK_SIDE = 0x03;
public const MASK_SIDE_SOUTH = 2;
public const MASK_SIDE_NORTH = 3;
public const MASK_SIDE_EAST = 0;
public const MASK_SIDE_WEST = 1;
private const MASK_UPPER = 0x04;
private const MASK_OPENED = 0x08;
protected $id = self::TRAPDOOR;

View File

@ -31,10 +31,10 @@ use pocketmine\math\Vector3;
use pocketmine\Player;
class Vine extends Flowable{
public const FLAG_SOUTH = 0x01;
public const FLAG_WEST = 0x02;
public const FLAG_NORTH = 0x04;
public const FLAG_EAST = 0x08;
private const FLAG_SOUTH = 0x01;
private const FLAG_WEST = 0x02;
private const FLAG_NORTH = 0x04;
private const FLAG_EAST = 0x08;
protected $id = self::VINE;