(Player p, Skill skill, double xp)
| 40 | } |
| 41 | |
| 42 | public static void xpSilent(Player p, Skill skill, double xp) { |
| 43 | xpSilent(Adapt.instance.getAdaptServer().getPlayer(p), skill, xp); |
| 44 | } |
| 45 | |
| 46 | public static void xpSilent(AdaptPlayer p, Skill skill, double xp) { |
| 47 | if (p.getSkillLine(skill.getName()) != null) { |
nothing calls this directly
no test coverage detected