From a7a2293d000a0ff16ddd2413989801a63868da52 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Thu, 22 Dec 2022 21:25:00 +0100 Subject: [TRIVIAL] "Fixed" smallest neu bug in history (#505) (wanna know what else is small) --- .../io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java index e4b4269d..aa977413 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java @@ -232,7 +232,7 @@ public class GuiItemRecipe extends GuiScreen { int row = i / hotbarSize; int col = i % hotbarSize; if (row == 0) - slots.add(new RecipeSlot(HOTBAR_SLOT_X + i * SLOT_SPACING, HOTBAR_SLOT_Y, item)); + slots.add(new RecipeSlot(HOTBAR_SLOT_X + i * SLOT_SPACING, HOTBAR_SLOT_Y + 1, item)); else slots.add(new RecipeSlot( PLAYER_INVENTORY_X + col * SLOT_SPACING, -- cgit