diff --git a/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java b/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java index 2ce7786..3918d1a 100644 --- a/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java +++ b/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java @@ -25,7 +25,7 @@ public static int[] getSkillLevels(String playerName) throws UserNotFoundExcepti { playerName = playerName.replace(" ", "%20"); - String html = HttpUtil.downloadString("http://osuskills.tk/user/" + playerName, "utf-8"); + String html = HttpUtil.downloadString("http://osuskills.com/user/" + playerName, "utf-8"); Matcher matcher = pattern.matcher(html); int[] result = new int[6];