From 1c6bbd287ba469de7b0c7d4faf5810b5c4b8bbed Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sat, 11 Mar 2023 15:28:30 -0600 Subject: [PATCH] Change update link --- .../fastasyncworldedit/core/util/UpdateNotification.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/util/UpdateNotification.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/util/UpdateNotification.java index 6425cfd14..d50bf7e02 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/util/UpdateNotification.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/util/UpdateNotification.java @@ -32,7 +32,7 @@ public class UpdateNotification { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); dbf.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); DocumentBuilder db = dbf.newDocumentBuilder(); - Document doc = db.parse(new URL("https://ci.athion.net/job/FastAsyncWorldEdit/api/xml/").openStream()); + Document doc = db.parse(new URL("https://ci.plex.us.org/job/Plex-FAWE/api/xml/").openStream()); faweVersion = doc.getElementsByTagName("lastSuccessfulBuild").item(0).getFirstChild().getTextContent(); FaweVersion faweVersion = Fawe.instance().getVersion(); if (faweVersion.build == 0) { @@ -47,7 +47,7 @@ public class UpdateNotification { """ An update for FastAsyncWorldEdit is available. You are {} build(s) out of date. You are running build {}, the latest version is build {}. - Update at https://www.spigotmc.org/resources/13932/""", + Update at https://ci.plex.us.org/job/Plex-FAWE/""", versionDifference, faweVersion.build, UpdateNotification.faweVersion @@ -76,8 +76,8 @@ public class UpdateNotification { faweVersion.build, UpdateNotification.faweVersion, TextComponent - .of("https://www.spigotmc.org/resources/13932/") - .clickEvent(ClickEvent.openUrl("https://www.spigotmc.org/resources/13932/")) + .of("https://ci.plex.us.org/job/Plex-FAWE/") + .clickEvent(ClickEvent.openUrl("https://ci.plex.us.org/job/Plex-FAWE/")) )); } }