From c09e4a1aa084d3a6a54ca7edda5554f4cf027826 Mon Sep 17 00:00:00 2001 From: Luck Date: Wed, 20 May 2020 14:45:20 +0100 Subject: [PATCH] Update web app urls --- .../java/me/lucko/luckperms/common/config/ConfigKeys.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/main/java/me/lucko/luckperms/common/config/ConfigKeys.java b/common/src/main/java/me/lucko/luckperms/common/config/ConfigKeys.java index 86bcc25d3..e572dc126 100644 --- a/common/src/main/java/me/lucko/luckperms/common/config/ConfigKeys.java +++ b/common/src/main/java/me/lucko/luckperms/common/config/ConfigKeys.java @@ -566,17 +566,17 @@ public final class ConfigKeys { /** * The URL of the web editor */ - public static final ConfigKey WEB_EDITOR_URL_PATTERN = stringKey("web-editor-url", "https://editor.luckperms.net/"); + public static final ConfigKey WEB_EDITOR_URL_PATTERN = stringKey("web-editor-url", "https://luckperms.net/editor/"); /** * The URL of the verbose viewer */ - public static final ConfigKey VERBOSE_VIEWER_URL_PATTERN = stringKey("verbose-viewer-url", "https://luckperms.net/verbose/#"); + public static final ConfigKey VERBOSE_VIEWER_URL_PATTERN = stringKey("verbose-viewer-url", "https://luckperms.net/verbose/"); /** * The URL of the tree viewer */ - public static final ConfigKey TREE_VIEWER_URL_PATTERN = stringKey("tree-viewer-url", "https://luckperms.net/treeview/#"); + public static final ConfigKey TREE_VIEWER_URL_PATTERN = stringKey("tree-viewer-url", "https://luckperms.net/treeview/"); private static final List> KEYS;