public class GuiCraftingStation extends GuiBetterStorage {
public final InventoryCraftingStation inv;
public GuiCraftingStation(EntityPlayer player, String title, boolean localized) {
super(new ContainerCraftingStation(player, new InventoryCraftingStation((localized ? title : StatCollector.translateToLocal(title)))));
inv = (InventoryCraftingStation)((ContainerCraftingStation)inventorySlots).inventory;
}