started with one thing...then I ended up doing a lot of shit.

This commit is contained in:
ProfessorProspector 2017-01-08 21:58:02 -08:00
parent 4e6b60e8e7
commit dc160bbd67
42 changed files with 345 additions and 417 deletions

View file

@ -1,7 +1,6 @@
package techreborn.tiles;
import net.minecraft.entity.player.EntityPlayer;
import techreborn.client.container.IContainerProvider;
import techreborn.client.container.builder.BuiltContainer;
import techreborn.client.container.builder.ContainerBuilder;
@ -15,6 +14,6 @@ public class TileQuantumChest extends TileTechStorageBase implements IContainerP
@Override
public BuiltContainer createContainer(final EntityPlayer player) {
return new ContainerBuilder("quantumchest").player(player.inventory).inventory().hotbar().addInventory()
.tile(this).slot(0, 80, 17).outputSlot(1, 80, 53).fakeSlot(2, 59, 42).addInventory().create();
.tile(this).slot(0, 80, 24).outputSlot(1, 80, 64).addInventory().create();
}
}