Some small tweaks

This commit is contained in:
modmuss50 2016-03-27 19:23:38 +01:00
parent dfb7d0afd4
commit 877308a75c
3 changed files with 32 additions and 20 deletions

View file

@ -5,7 +5,6 @@ import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.Slot;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import reborncore.client.gui.SlotCharge;
import reborncore.common.container.RebornContainer;
import techreborn.tiles.storage.TileBatBox;
@ -40,8 +39,8 @@ public class ContainerBatbox extends RebornContainer
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18, 142));
}
this.addSlotToContainer(new SlotCharge(tile.inventory, 0, 80, 17));
this.addSlotToContainer(new SlotCharge(tile.inventory, 1, 80, 53));
// this.addSlotToContainer(new SlotCharge(tile.inventory, 0, 80, 17));
// this.addSlotToContainer(new SlotCharge(tile.inventory, 1, 80, 53));
}
@Override

View file

@ -7,7 +7,6 @@ import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import reborncore.client.gui.SlotCharge;
import reborncore.common.container.RebornContainer;
import techreborn.tiles.storage.TileMFSU;
@ -55,8 +54,8 @@ public class ContainerMFSU extends RebornContainer
}
});
}
this.addSlotToContainer(new SlotCharge(tile.inventory, 0, 80, 17));
this.addSlotToContainer(new SlotCharge(tile.inventory, 1, 80, 53));
// this.addSlotToContainer(new SlotCharge(tile.inventory, 0, 80, 17));
// this.addSlotToContainer(new SlotCharge(tile.inventory, 1, 80, 53));
}
@Override