public ContainerTradeStation(InventoryPlayer inventoryplayer, TileTradeStation tile) {
super(tile);
this.tile = tile;
for (int y = 0; y < 3; y++) {
addSlot(new SlotRailcraft(tile.getRecipeSlots(), 0 + 3 * y, 8, 24 + 21 * y).setPhantom());
addSlot(new SlotRailcraft(tile.getRecipeSlots(), 1 + 3 * y, 26, 24 + 21 * y).setPhantom());
addSlot(new SlotRailcraft(tile.getRecipeSlots(), 2 + 3 * y, 71, 24 + 21 * y).setPhantom());
}
for (int y = 0; y < 2; y++) {
for (int x = 0; x < 5; x++) {
addSlot(new Slot(tile, x + y * 5, 8 + x * 18, 87 + y * 18));