diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 12:42:27 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 12:42:27 +0200 |
| commit | 8a1d88387e928b26bdc8bcabae6ea22a646bb6b0 (patch) | |
| tree | ca4c68f02782c8910e3ce8d6b92f6649bb51a111 /src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java | |
| parent | 2f8f3e17a2b72736b4c57e3a55042490947212d4 (diff) | |
| download | SkyHanni-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.java | 6 |
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); } } |
