pocketmine\Player::getAllowFlight PHP Method

getAllowFlight() public method

public getAllowFlight ( ) : boolean
return boolean
    public function getAllowFlight() : bool
    {
        return $this->allowFlight;
    }

Usage Example

Example #1
0
 /**
  * Get the "Can fly" status of a player
  *
  * @param Player $player
  * @return bool
  */
 public function canFly(Player $player)
 {
     return $player->getAllowFlight();
 }
Player