Skip to content

Commit ad72a9b

Browse files
committed
Port to 1.21.6
1 parent 3eb4ad2 commit ad72a9b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

buildSrc/src/main/kotlin/com/blamejared/Versions.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package com.blamejared
33
object Versions {
44
const val MOD = "1.0"
55
const val JAVA = "21"
6-
const val MINECRAFT = "1.21.5"
7-
const val FABRIC_LOADER = "0.16.10"
8-
const val FABRIC = "0.119.5+1.21.5"
9-
const val FORGE = "55.0.1"
10-
const val FORGE_LOADER = "[55,)"
11-
const val NEO_FORGE = "21.5.4-beta"
6+
const val MINECRAFT = "1.21.6"
7+
const val FABRIC_LOADER = "0.16.14"
8+
const val FABRIC = "0.128.1+1.21.6"
9+
const val FORGE = "56.0.9"
10+
const val FORGE_LOADER = "[56,)"
11+
const val NEO_FORGE = "21.6.20-beta"
1212
const val NEO_FORGE_LOADER= "[4,)"
1313
}

common/src/main/java/com/blamejared/searchables/api/autcomplete/AutoComplete.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public void renderWidget(GuiGraphics guiGraphics, int mx, int my, float partial)
156156
int maxY = minY + suggestionHeight;
157157
boolean hovered = selectedIndex != -1 && displayOffset + selectedIndex == i;
158158

159-
guiGraphics.fill(RenderType.guiOverlay(), this.getX(), minY, this.getX() + this.getWidth(), maxY, hovered ? 0xe0111111 : 0xe0000000);
159+
guiGraphics.fill(this.getX(), minY, this.getX() + this.getWidth(), maxY, hovered ? 0xe0111111 : 0xe0000000);
160160
guiGraphics.drawString(Minecraft.getInstance().font, suggestion.display(), minX, minY + 1, hovered ? Objects.requireNonNull(ChatFormatting.YELLOW.getColor()) : 0xFFFFFFFF);
161161
}
162162
this.lastMousePosition.set(mx, my);

0 commit comments

Comments
 (0)