Skip to content

Commit

Permalink
Fix ingredients overlapping with heat bar when using EMI (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
dudek26 authored Aug 24, 2024
1 parent 00d2479 commit aceeca8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void addWidgets(WidgetHolder widgets) {

for (int i = 0; i < inputSize; i++) {
EmiIngredient stack = input.get(i);
addSlot(widgets, stack, xOff + 16 + (i % 3) * 19, yOff + 50 + (i / 3) * 19);
addSlot(widgets, stack, xOff + 16 + (i % 3) * 19, yOff + 50 - (i / 3) * 19);
}

for (int i = 0; i < outputSize; i++) {
Expand Down

0 comments on commit aceeca8

Please sign in to comment.