aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java
diff options
context:
space:
mode:
authorRoman / Nea <roman.graef@gmail.com>2022-02-12 13:53:01 +0100
committerGitHub <noreply@github.com>2022-02-12 23:53:01 +1100
commitf11f6953a207606ae920ede9e713467a47cfc018 (patch)
tree591b7fd8b0e255a399616978080da284600c5bf1 /src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java
parent076733d8ad73a2cfccb910e0bb1dc71c00d8ded1 (diff)
downloadnotenoughupdates-f11f6953a207606ae920ede9e713467a47cfc018.tar.gz
notenoughupdates-f11f6953a207606ae920ede9e713467a47cfc018.tar.bz2
notenoughupdates-f11f6953a207606ae920ede9e713467a47cfc018.zip
Dream skin (#80)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java4
1 files changed, 2 insertions, 2 deletions
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 e820378b..6e4d13f6 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiItemRecipe.java
@@ -90,7 +90,7 @@ public class GuiItemRecipe extends GuiScreen {
Minecraft.getMinecraft().getTextureManager().bindTexture(currentRecipe.getBackground());
this.drawTexturedModalRect(guiLeft, guiTop, 0, 0, this.xSize, this.ySize);
- currentRecipe.drawExtraBackground(this);
+ currentRecipe.drawExtraBackground(this, mouseX, mouseY);
List<RecipeSlot> slots = getAllRenderedSlots();
for (RecipeSlot slot : slots) {
@@ -101,7 +101,7 @@ public class GuiItemRecipe extends GuiScreen {
Utils.drawStringScaledMaxWidth(title, fontRendererObj, guiLeft + TITLE_X, guiTop + TITLE_Y, false, xSize - 38, 0x404040);
- currentRecipe.drawExtraInfo(this);
+ currentRecipe.drawExtraInfo(this, mouseX, mouseY);
for (RecipeSlot slot : slots) {
if (isWithinRect(mouseX, mouseY, slot.getX(this), slot.getY(this), SLOT_SIZE, SLOT_SIZE)) {