(double xp)
| 85 | } |
| 86 | |
| 87 | public static double getLevelProgress(double xp) { |
| 88 | double level = getLevelForXp(xp); |
| 89 | return level - (int) level; |
| 90 | } |
| 91 | |
| 92 | public static double getXpForLevel(double level) { |
| 93 | return AdaptConfig.get().getXpCurve().getCurve().getXPForLevel(level); |
nothing calls this directly
no test coverage detected