pocketmine\Player::getLevelUpExpectedExperience PHP Method

getLevelUpExpectedExperience() public method

Deprecation: Use Human::getLevelXpRequirement($level), this method will be removed in the future.
    public function getLevelUpExpectedExperience()
    {
        trigger_error("This method is deprecated, do not use it", E_USER_DEPRECATED);
        return self::getLevelXpRequirement($this->getXpLevel() + 1);
    }
Player