From fb45fd51fb7a696bbed2c45d0c3c3b33c5b1cae7 Mon Sep 17 00:00:00 2001 From: MattBDev <4009945+MattBDev@users.noreply.github.com> Date: Thu, 27 Feb 2020 21:09:02 -0500 Subject: [PATCH] Fixed missed schematic link change --- .../java/com/sk89q/worldedit/command/ClipboardCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/command/ClipboardCommands.java b/worldedit-core/src/main/java/com/sk89q/worldedit/command/ClipboardCommands.java index bda07a08d..925a49b11 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/command/ClipboardCommands.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/command/ClipboardCommands.java @@ -362,7 +362,7 @@ public class ClipboardCommands { String urlText = url.toString(); if (Settings.IMP.WEB.SHORTEN_URLS) { try { - urlText = MainUtil.getText("https://empcraft.com/s/?" + URLEncoder.encode(url.toString(), "UTF-8")); + urlText = MainUtil.getText("https://athion.net/s/?" + URLEncoder.encode(url.toString(), "UTF-8")); } catch (IOException e) { e.printStackTrace(); }