pocketmine\Player::addExperience PHP Method

addExperience() public method

Deprecation: Use Human::addXp($xp), this method will be removed in the future.
public addExperience ( integer $exp )
$exp integer
    public function addExperience(int $exp)
    {
        trigger_error("This method is deprecated, do not use it", E_USER_DEPRECATED);
        return $this->addXp($exp);
    }
Player