Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 9000d12

Browse files
committed
fix the last missigno textures
1 parent e79da64 commit 9000d12

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

1.8.9/src/main/java/io/github/axolotlclient/modules/hypixel/bedwars/upgrades/BedwarsTeamUpgrades.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,20 +128,20 @@ public class BedwarsTeamUpgrades {
128128
"forge", Pattern.compile("^\\b[A-Za-z0-9_§]{3,16}\\b purchased (?:Iron|Golden|Emerald|Molten) Forge\\s*$"),
129129
new int[]{2, 4}, new int[]{4, 6}, (x, y, width, height, upgradeLevel) -> {
130130
if(upgradeLevel == 0){
131-
MinecraftClient.getInstance().getTextureManager().bindTexture(new Identifier("textures/block/furnace_front.png"));
131+
MinecraftClient.getInstance().getTextureManager().bindTexture(new Identifier("textures/blocks/furnace_front_off.png"));
132132
DrawableHelper.drawTexture(x, y, 0, 0, width, height, width, height);
133133
} else {
134134
if(upgradeLevel == 2){
135-
Color color = Color.parse("#FFFF00");
135+
Color color = Color.parse("#FFFFFF00");
136136
GlStateManager.color(color.getAlpha() / 255F, color.getRed() / 255F, color.getGreen() / 255F, color.getBlue() / 255F);
137137
} else if (upgradeLevel == 3) {
138-
Color color = Color.parse("#00FF00");
138+
Color color = Color.parse("#FF00FF00");
139139
GlStateManager.color(color.getAlpha() / 255F, color.getRed() / 255F, color.getGreen() / 255F, color.getBlue() / 255F);
140140
} else if (upgradeLevel == 4){
141-
Color color = Color.parse("#FF0000");
141+
Color color = Color.parse("#FFFF0000");
142142
GlStateManager.color(color.getAlpha() / 255F, color.getRed() / 255F, color.getGreen() / 255F, color.getBlue() / 255F);
143143
}
144-
MinecraftClient.getInstance().getTextureManager().bindTexture(new Identifier("textures/block/furnace_front_on.png"));
144+
MinecraftClient.getInstance().getTextureManager().bindTexture(new Identifier("textures/blocks/furnace_front_on.png"));
145145
DrawableHelper.drawTexture(x, y, 0, 0, width, height, width, height);
146146
}
147147
}

0 commit comments

Comments
 (0)