(Player p, Skill skill, double percentChange, int durationMS)
| 70 | } |
| 71 | |
| 72 | public static void boostXP(Player p, Skill skill, double percentChange, int durationMS) { |
| 73 | boostXP(Adapt.instance.getAdaptServer().getPlayer(p), skill, percentChange, durationMS); |
| 74 | } |
| 75 | |
| 76 | public static void boostXP(AdaptPlayer p, Skill skill, double percentChange, int durationMS) { |
| 77 | p.getSkillLine(skill.getName()).boost(percentChange, durationMS); |
nothing calls this directly
no test coverage detected