diff --git a/src/main/java/net/fyoncle/elysiumdaystweaks/mixin/SplashRemoverMixin.java b/src/main/java/net/fyoncle/elysiumdaystweaks/mixin/SplashRemoverMixin.java index 29943bc..4c5e315 100644 --- a/src/main/java/net/fyoncle/elysiumdaystweaks/mixin/SplashRemoverMixin.java +++ b/src/main/java/net/fyoncle/elysiumdaystweaks/mixin/SplashRemoverMixin.java @@ -8,6 +8,11 @@ @Mixin(SplashTextRenderer.class) public class SplashRemoverMixin { + + /** + * @author Fyoncle + * @reason I have no damn idea why. + */ @Overwrite public void render(DrawContext context, int screenWidth, TextRenderer textRenderer, int alpha) {} } diff --git a/src/main/java/net/fyoncle/elysiumdaystweaks/utility/constants/Textures.java b/src/main/java/net/fyoncle/elysiumdaystweaks/utility/constants/Textures.java index 9b5e372..b556fb5 100644 --- a/src/main/java/net/fyoncle/elysiumdaystweaks/utility/constants/Textures.java +++ b/src/main/java/net/fyoncle/elysiumdaystweaks/utility/constants/Textures.java @@ -4,19 +4,21 @@ public class Textures { // Health Bar Textures - public static Identifier UNFOCUSED_OFF_HEALTHBAR_TEXTURE = new Identifier( + // OFF + public static Identifier UNFOCUSED_OFF_HEALTHBAR_TEXTURE = new Identifier( "elysium-days-tweaks", "buttons/neat_disable_button_unfocused.png"); - public static Identifier UNFOCUSED_ON_HEALTHBAR_TEXTURE = new Identifier( - "elysium-days-tweaks", - "buttons/neat_button_unfocused.png"); + public static Identifier FOCUSED_OFF_HEALTHBAR_TEXTURE = new Identifier( + "elysium-days-tweaks", + "buttons/neat_disable_button_focused.png"); + // ON + public static Identifier UNFOCUSED_ON_HEALTHBAR_TEXTURE = new Identifier( + "elysium-days-tweaks", + "buttons/neat_button_unfocused.png"); public static Identifier FOCUSED_ON_HEALTHBAR_TEXTURE = new Identifier( "elysium-days-tweaks", "buttons/neat_button_focused.png"); - public static Identifier FOCUSED_OFF_HEALTHBAR_TEXTURE = new Identifier( - "elysium-days-tweaks", - "buttons/neat_disable_button_focused.png"); // Discord Button Textures public static Identifier DISCORD_BUTTON_UNFOCUSED_TEXTURE = new Identifier( @@ -27,36 +29,36 @@ public class Textures { "buttons/discord_button_focused.png"); // Green Button Texture - public static Identifier GREEN_BUTTON_FOCUSED_TEXTURE = new Identifier( - "elysium-days-tweaks", - "buttons/green_button_focused.png"); public static Identifier GREEN_BUTTON_UNFOCUSED_TEXTURE = new Identifier( "elysium-days-tweaks", "buttons/green_button_unfocused.png"); + public static Identifier GREEN_BUTTON_FOCUSED_TEXTURE = new Identifier( + "elysium-days-tweaks", + "buttons/green_button_focused.png"); // Ram Warning Screen Buttons Texture // Ignore Button - public static Identifier IGNORE_BUTTON_FOCUSED = new Identifier( - "elysium-days-tweaks", - "buttons/default_button_focused.png"); public static Identifier IGNORE_BUTTON_UNFOCUSED = new Identifier( "elysium-days-tweaks", "buttons/default_button_unfocused.png"); + public static Identifier IGNORE_BUTTON_FOCUSED = new Identifier( + "elysium-days-tweaks", + "buttons/default_button_focused.png"); // Guide Button - public static Identifier GUIDE_BUTTON_FOCUSED = new Identifier( - "elysium-days-tweaks", - "buttons/guide_button_focused.png"); public static Identifier GUIDE_BUTTON_UNFOCUSED = new Identifier( "elysium-days-tweaks", "buttons/guide_button_unfocused.png"); + public static Identifier GUIDE_BUTTON_FOCUSED = new Identifier( + "elysium-days-tweaks", + "buttons/guide_button_focused.png"); // Dont Show Button - public static Identifier RED_BUTTON_FOCUSED = new Identifier( - "elysium-days-tweaks", - "buttons/red_button_focused.png"); public static Identifier RED_BUTTON_UNFOCUSED = new Identifier( "elysium-days-tweaks", "buttons/red_button_unfocused.png"); + public static Identifier RED_BUTTON_FOCUSED = new Identifier( + "elysium-days-tweaks", + "buttons/red_button_focused.png"); }