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

@ -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;