mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-27 05:40:01 +00:00
Remove some state meta constants from API visibility
This commit is contained in:
parent
274a4d892f
commit
74486d6880
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user