Changed upgrade slots to SlotUpgrade
This commit is contained in:
parent
3274894625
commit
fb12bfab9e
9 changed files with 61 additions and 32 deletions
|
@ -5,6 +5,7 @@ import net.minecraft.inventory.Slot;
|
|||
import net.minecraftforge.fml.relauncher.Side;
|
||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||
import reborncore.client.gui.SlotOutput;
|
||||
import techreborn.api.SlotUpgrade;
|
||||
import techreborn.tiles.teir1.TileGrinder;
|
||||
|
||||
public class ContainerGrinder extends ContainerCrafting {
|
||||
|
@ -26,10 +27,10 @@ public class ContainerGrinder extends ContainerCrafting {
|
|||
|
||||
|
||||
// upgrades
|
||||
this.addSlotToContainer(new Slot(tileGrinder.inventory, 2, 152, 8));
|
||||
this.addSlotToContainer(new Slot(tileGrinder.inventory, 3, 152, 26));
|
||||
this.addSlotToContainer(new Slot(tileGrinder.inventory, 4, 152, 44));
|
||||
this.addSlotToContainer(new Slot(tileGrinder.inventory, 5, 152, 62));
|
||||
this.addSlotToContainer(new SlotUpgrade(tileGrinder.inventory, 2, 152, 8));
|
||||
this.addSlotToContainer(new SlotUpgrade(tileGrinder.inventory, 3, 152, 26));
|
||||
this.addSlotToContainer(new SlotUpgrade(tileGrinder.inventory, 4, 152, 44));
|
||||
this.addSlotToContainer(new SlotUpgrade(tileGrinder.inventory, 5, 152, 62));
|
||||
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue