(Player p, Skill skill, double xp)
| 29 | |
| 30 | public class XP { |
| 31 | public static void xp(Player p, Skill skill, double xp) { |
| 32 | xp(Adapt.instance.getAdaptServer().getPlayer(p), skill, xp); |
| 33 | } |
| 34 | |
| 35 | public static void xp(AdaptPlayer p, Skill skill, double xp) { |
| 36 | PlayerSkillLine skillLine = p.getSkillLine(skill.getName()); |
no test coverage detected