From 9e08dbf2baa9819abd281ad285df7462c99491e2 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Fri, 8 Jul 2022 16:02:54 +0200 Subject: remove old stuff --- src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java') diff --git a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java index 8a9ae0d8b..bddc76339 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java @@ -26,7 +26,7 @@ public class Textures implements IResourceManagerReloadListener { public static void setTexture(int selected) { if (selected >= styles.size() || selected < 0) { texture = DEFAULT_TEXTURE; - LorenzMod.config.misc.style = 0; +// LorenzMod.config.misc.style = 0; } else { texture = styles.get(selected); } @@ -53,6 +53,6 @@ public class Textures implements IResourceManagerReloadListener { } } catch (Exception ignored) {} - if (LorenzMod.config != null) setTexture(LorenzMod.config.misc.style); +// if (LorenzMod.config != null) setTexture(LorenzMod.config.misc.style); } } -- cgit