Skip to content

Commit b617b71

Browse files
return a non zero stack size
1 parent dcd2e97 commit b617b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/appeng/client/gui/me/crafting/AbstractTableRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public final void render(GuiGraphics guiGraphics, int mouseX, int mouseY, List<T
132132
&& mouseY >= cellY && mouseY <= cellY + CELL_HEIGHT) {
133133
tooltipLines = getEntryTooltip(entry);
134134
hovered = new StackWithBounds(
135-
new GenericStack(entryStack, 0),
135+
new GenericStack(entryStack, 1),
136136
new Rect2i(screen.getGuiLeft() + cellX, screen.getGuiTop() + cellY, CELL_WIDTH,
137137
CELL_HEIGHT));
138138
}

0 commit comments

Comments
 (0)