getAllowFlight() public method

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