From bf9078aeadf3bce06b8d5426612d485b648d64af Mon Sep 17 00:00:00 2001 From: Derpbox <65347035+DBTDerpbox@users.noreply.github.com> Date: Thu, 19 May 2022 03:16:48 -0500 Subject: [PATCH] Change default download url to the lem menu server's SRP config this will allow me to have all 3 minigames have their packs all downloadable from lem client helper's preload feature, as the menu server will have all the packs for every game in its SRP config --- .../ResourcePreloader/ResourcePreloaderConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/kyrptonaught/lemclienthelper/ResourcePreloader/ResourcePreloaderConfig.java b/src/main/java/net/kyrptonaught/lemclienthelper/ResourcePreloader/ResourcePreloaderConfig.java index 08b4ce5..22d3a6e 100644 --- a/src/main/java/net/kyrptonaught/lemclienthelper/ResourcePreloader/ResourcePreloaderConfig.java +++ b/src/main/java/net/kyrptonaught/lemclienthelper/ResourcePreloader/ResourcePreloaderConfig.java @@ -4,7 +4,7 @@ import net.kyrptonaught.kyrptconfig.config.AbstractConfigFile; public class ResourcePreloaderConfig implements AbstractConfigFile { - public static final String DEFAULT_URL = "https://raw.githubusercontent.com/DBTDerpbox/Legacy-Edition-Battle/main/config/switchableresourcepacksconfig.json5"; + public static final String DEFAULT_URL = "https://raw.githubusercontent.com/DBTDerpbox/LEM-Menu-Server/main/config/serverutils/switchableresourcepacks.json5"; @Comment("URL to download the list of packs from") public String URL = DEFAULT_URL;