aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/api/gui
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2022-01-07 16:43:06 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2022-01-07 16:43:06 +0000
commita69fddc219dd6cf5d94952603f6bf348ed847fe5 (patch)
treedb3172365f15d0858fe9fc17175d69612d95fd4f /src/main/java/gtPlusPlus/xmod/gregtech/api/gui
parent53da73a35860acd285baa0ccab5aef4ff4f6bd98 (diff)
downloadGT5-Unofficial-a69fddc219dd6cf5d94952603f6bf348ed847fe5.tar.gz
GT5-Unofficial-a69fddc219dd6cf5d94952603f6bf348ed847fe5.tar.bz2
GT5-Unofficial-a69fddc219dd6cf5d94952603f6bf348ed847fe5.zip
Added recipes for the GT4 Workbenches.
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/api/gui')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/api/gui/workbench/GT_Container_BronzeWorkbench.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/gui/workbench/GT_Container_BronzeWorkbench.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/gui/workbench/GT_Container_BronzeWorkbench.java
index f7cfd31e5d..d26c4d49fd 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/api/gui/workbench/GT_Container_BronzeWorkbench.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/gui/workbench/GT_Container_BronzeWorkbench.java
@@ -4,6 +4,7 @@ import gregtech.api.gui.GT_ContainerMetaTile_Machine;
import gregtech.api.gui.GT_Slot_Holo;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.util.GT_Utility;
+import gtPlusPlus.core.slots.SlotBlueprint;
import gtPlusPlus.xmod.gregtech.common.tileentities.storage.GT_MetaTileEntity_BronzeCraftingTable;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
@@ -53,7 +54,7 @@ public class GT_Container_BronzeWorkbench extends GT_ContainerMetaTile_Machine {
addSlotToContainer(new Slot(mTileEntity, 33, 154, 28));
addSlotToContainer(new Slot(mTileEntity, 34, 154, 64));
- addSlotToContainer(new Slot(mTileEntity, 30, 136, 28));
+ addSlotToContainer(new SlotBlueprint(mTileEntity, 30, 136, 28));
addSlotToContainer(new GT_Slot_Holo(mTileEntity, 31, 136, 64, false, false, 1));
addSlotToContainer(new GT_Slot_Holo(mTileEntity, 32, 154, 46, false, false, 1));
addSlotToContainer(new GT_Slot_Holo(mTileEntity, 32, 136, 46, false, false, 1));