PlayableStat getExpForLevel function fix.

Author: Juan.
Source: http://www.l2jserver.com/forum/viewtopic.php?f=77&t=30675
This commit is contained in:
MobiusDev 2015-04-02 03:36:05 +00:00
parent 5c033372d9
commit 8300183361

View File

@ -225,7 +225,7 @@ public class PlayableStat extends CharStat
public long getExpForLevel(int level)
{
return level;
return ExperienceData.getInstance().getExpForLevel(level);
}
@Override