diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md similarity index 100% rename from ISSUE_TEMPLATE.md rename to .github/ISSUE_TEMPLATE.md diff --git a/README.md b/README.md index 2727f830..8dfe46cd 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ It is available for Bukkit, Forge, Sponge and Nukkit. ## Downloads ### <1.12.2 -* [Download](https://incendo.org/download/) +* [Download](https://empcraft.com/fawe/download/?bukkit) * [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit/) ### 1.13+ -* [Download](https://incendo.org/download/) +* [Download](https://empcraft.com/fawe/download/?bukkit113) * [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit-1.13/) * [Repository](https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13) diff --git a/core/src/main/java/com/boydti/fawe/util/IncendoPaster.java b/core/src/main/java/com/boydti/fawe/util/IncendoPaster.java index c88449f5..ec802804 100644 --- a/core/src/main/java/com/boydti/fawe/util/IncendoPaster.java +++ b/core/src/main/java/com/boydti/fawe/util/IncendoPaster.java @@ -23,7 +23,7 @@ public final class IncendoPaster { /** * Upload service URL */ - public static final String UPLOAD_PATH = "https://incendo.org/paste/upload"; + public static final String UPLOAD_PATH = "https://athion.net/ISPaster/paste/upload"; /** * Valid paste applications */ @@ -235,7 +235,7 @@ public final class IncendoPaster { if (jsonObject.has("created")) { final String pasteId = jsonObject.get("paste_id").getAsString(); - return String.format("https://incendo.org/paste/view/%s", pasteId); + return String.format("https://athion.net/ISPaster/paste/view/%s", pasteId); } else { throw new IOException(String.format("Failed to create the debug paste: %s", jsonObject.get("response").getAsString())); diff --git a/core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java b/core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java index c4a6a9f6..e5213b5e 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java @@ -182,7 +182,7 @@ public class WorldEditCommands { @Command( aliases = {"debugpaste"}, usage = "", - desc = "Upload latest.log, config.yml and your message.yml to https://incendo.org", + desc = "Upload latest.log, config.yml and your message.yml to https://athion.net/ISPaster/paste", min = 0, max = 0 )