From db237f72097f28ba85ba5adf6dd52a938b6105ad Mon Sep 17 00:00:00 2001 From: GamercraftStudios <58826382+BurnhamR@users.noreply.github.com> Date: Sun, 15 May 2022 16:24:19 -0600 Subject: [PATCH] Fixed issue with sample/panorama_lower not loading sample/panorama_lower was not loading by default and giving an error because code said sample_panorama_lower instead of sample/panorama_lower --- src/main/java/alexiil/mc/mod/load/CustomLoadingScreen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/alexiil/mc/mod/load/CustomLoadingScreen.java b/src/main/java/alexiil/mc/mod/load/CustomLoadingScreen.java index 3e9cde8..335585a 100644 --- a/src/main/java/alexiil/mc/mod/load/CustomLoadingScreen.java +++ b/src/main/java/alexiil/mc/mod/load/CustomLoadingScreen.java @@ -65,7 +65,7 @@ public class CustomLoadingScreen { + "\nOr you can set this to 'config/example' to use the default example config." ); - String[] defaultRandoms = { "sample/default", "sample/white", "sample/scrolling", "sample_panorama_lower" }; + String[] defaultRandoms = { "sample/default", "sample/white", "sample/scrolling", "sample/panorama_lower" }; PROP_CONFIG_RANDOMS = CONFIG.get("general", "random_configs", defaultRandoms); PROP_WAIT = CONFIG.get("general", "smooth_init", true);