commit
be2b4e5b69
2 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@ package techreborn.client.container;
|
|||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import techreborn.client.SlotFake;
|
||||
import techreborn.client.SlotFluid;
|
||||
import techreborn.client.SlotOutput;
|
||||
import techreborn.tiles.TileThermalGenerator;
|
||||
|
||||
|
@ -17,7 +18,7 @@ public class ContainerThermalGenerator extends TechRebornContainer {
|
|||
this.tileThermalGenerator = tileThermalGenerator;
|
||||
this.player = player;
|
||||
|
||||
this.addSlotToContainer(new Slot(tileThermalGenerator.inventory, 0, 80,
|
||||
this.addSlotToContainer(new SlotFluid(tileThermalGenerator.inventory, 0, 80,
|
||||
17));
|
||||
this.addSlotToContainer(new SlotOutput(tileThermalGenerator.inventory,
|
||||
1, 80, 53));
|
||||
|
|
|
@ -2199,7 +2199,7 @@ public class ModRecipes {
|
|||
new ItemStack(IC2Items.getItem("cell").getItem(), 2, 0),
|
||||
null,
|
||||
ItemCells.getCellByName("sodium"),
|
||||
ItemDusts.getDustByName("chlorine"),
|
||||
ItemCells.getCellByName("chlorine"),
|
||||
null,
|
||||
null,
|
||||
40, 60
|
||||
|
|
Loading…
Reference in a new issue