From 440afcca5dbf39557f6c490b74e29e22ee33dfb6 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 18 Jun 2021 16:37:25 +0200 Subject: [PATCH] Fixes #3066 --- .../java/com/plotsquared/core/configuration/Settings.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 0fc83d57d..cb9912d4d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -445,15 +445,15 @@ public class Settings extends Config { public static class Arkitektonika { @Comment("The url of the backend server (Arkitektonika)") - public static String BACKEND_URL = "https://ark.jacobandersen.dev/"; + public static String BACKEND_URL = "https://schematic.cloud/"; @Comment({"The url used to generate a download link from.", "{key} will be replaced with the generated key"}) - public static String DOWNLOAD_URL = "https://sw.jacobandersen.dev/download/{key}"; + public static String DOWNLOAD_URL = "https://api.schematic.cloud/download/{key}"; @Comment({"The url used to generate a deletion link from.", "{key} will be replaced with the generated key"}) - public static String DELETE_URL = "https://sw.jacobandersen.dev/delete/{key}"; + public static String DELETE_URL = "https://api.schematic.cloud/delete/{key}"; }