aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
diff options
context:
space:
mode:
authorLorenz <ESs95s3P5z8Pheb>2022-07-08 12:42:27 +0200
committerLorenz <ESs95s3P5z8Pheb>2022-07-08 12:42:27 +0200
commit8a1d88387e928b26bdc8bcabae6ea22a646bb6b0 (patch)
treeca4c68f02782c8910e3ce8d6b92f6649bb51a111 /src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
parent2f8f3e17a2b72736b4c57e3a55042490947212d4 (diff)
downloadSkyHanni-8a1d88387e928b26bdc8bcabae6ea22a646bb6b0.tar.gz
SkyHanni-8a1d88387e928b26bdc8bcabae6ea22a646bb6b0.tar.bz2
SkyHanni-8a1d88387e928b26bdc8bcabae6ea22a646bb6b0.zip
renamed lorenz mod
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
index c77bd40f8..ee122aef4 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
@@ -5,7 +5,7 @@ import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
-import com.thatgravyboat.skyblockhud.SkyblockHud;
+import com.thatgravyboat.skyblockhud.LorenzMod;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
@@ -26,7 +26,7 @@ public class Textures implements IResourceManagerReloadListener {
public static void setTexture(int selected) {
if (selected >= styles.size() || selected < 0) {
texture = DEFAULT_TEXTURE;
- SkyblockHud.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 (SkyblockHud.config != null) setTexture(SkyblockHud.config.misc.style);
+ if (LorenzMod.config != null) setTexture(LorenzMod.config.misc.style);
}
}