This repository was archived by the owner on Nov 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
1.21.4/src/main/java/io/github/axolotlclient Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,9 @@ public class AxolotlClientConfig {
6666 NativeImage nativeImage = texture .getPixels ();
6767 if (nativeImage != null ) {
6868 int color = 255 - value .getAlpha ();
69- color = (color << 8 ) + value .getBlue ();
70- color = (color << 8 ) + value .getGreen ();
7169 color = (color << 8 ) + value .getRed ();
70+ color = (color << 8 ) + value .getGreen ();
71+ color = (color << 8 ) + value .getBlue ();
7272
7373 for (int i = 0 ; i < 8 ; ++i ) {
7474 for (int j = 0 ; j < 8 ; ++j ) {
Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ public abstract class OverlayTextureMixin {
3737
3838 Color c = AxolotlClient .CONFIG .hitColor .get ();
3939 int color = 255 - c .getAlpha ();
40- color = (color << 8 ) + c .getBlue ();
41- color = (color << 8 ) + c .getGreen ();
4240 color = (color << 8 ) + c .getRed ();
41+ color = (color << 8 ) + c .getGreen ();
42+ color = (color << 8 ) + c .getBlue ();
4343 return color ;
4444 }
4545}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ org.gradle.parallel=true
66axolotlclient.modules.all =true
77
88# Mod Properties
9- version =3.1.1-rc.10
9+ version =3.1.1-rc.11
1010
1111maven_group =io.github.axolotlclient
1212
You can’t perform that action at this time.
0 commit comments