Jump to content

omnihil

Members
  • Posts

    2
  • Joined

  • Last visited

omnihil's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Is there a reason for not adding an option to change it with resource packs, like you can with vanilla loading screen?
  2. I would like to change this: "RED(new ColourScheme.Colour(239, 50, 61)" https://maven.minecraftforge.net/net/minecraftforge/fmlearlydisplay/1.20.1-47.1.0/fmlearlydisplay-1.20.1-47.1.0.jar ...\fmlearlydisplay-1.20.1-47.1.0.jar\net\minecraftforge\fml\earlydisplay\ColourScheme.class // // Decompiled by Procyon v0.5.36 // package net.minecraftforge.fml.earlydisplay; public enum ColourScheme { RED(new ColourScheme.Colour(239, 50, 61), new ColourScheme.Colour(255, 255, 255)), BLACK(new ColourScheme.Colour(0, 0, 0), new ColourScheme.Colour(255, 255, 255)); private final ColourScheme.Colour background; private final ColourScheme.Colour foreground; private ColourScheme(final ColourScheme.Colour background, final ColourScheme.Colour foreground) { this.background = background; this.foreground = foreground; } public ColourScheme.Colour background() { return this.background; } public ColourScheme.Colour foreground() { return this.foreground; } private static /* synthetic */ ColourScheme[] $values() { return new ColourScheme[] { ColourScheme.RED, ColourScheme.BLACK }; } static { $VALUES = $values(); } }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.