From dca7663de93a52923a95f2e2e34b23f7e697d091 Mon Sep 17 00:00:00 2001 From: "Aidan C. Brady" Date: Sat, 23 Nov 2013 15:21:01 -0500 Subject: [PATCH] Fix factories --- .../common/tileentity/TileEntityAdvancedFactory.java | 9 ++++----- .../common/tileentity/TileEntityEliteFactory.java | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/common/mekanism/common/tileentity/TileEntityAdvancedFactory.java b/common/mekanism/common/tileentity/TileEntityAdvancedFactory.java index 50f781a72..aa47bbe94 100644 --- a/common/mekanism/common/tileentity/TileEntityAdvancedFactory.java +++ b/common/mekanism/common/tileentity/TileEntityAdvancedFactory.java @@ -15,11 +15,10 @@ public class TileEntityAdvancedFactory extends TileEntityFactory sideOutputs.add(new SideData(EnumColor.GREY, new int[0])); sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {0})); sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {1})); - sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {4, 5, 6, 7, 8})); - sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {9, 10, 11, 12, 13})); + sideOutputs.add(new SideData(EnumColor.PURPLE, new int[] {4})); + sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {5, 6, 7, 8, 9})); + sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {10, 11, 12, 13, 14})); - sideConfig = new byte[] {4, 3, 0, 0, 2, 1}; - - ejectorComponent = new TileComponentEjector(this, sideOutputs.get(4)); + ejectorComponent = new TileComponentEjector(this, sideOutputs.get(5)); } } diff --git a/common/mekanism/common/tileentity/TileEntityEliteFactory.java b/common/mekanism/common/tileentity/TileEntityEliteFactory.java index b6d34893c..2264e49e2 100644 --- a/common/mekanism/common/tileentity/TileEntityEliteFactory.java +++ b/common/mekanism/common/tileentity/TileEntityEliteFactory.java @@ -15,11 +15,10 @@ public class TileEntityEliteFactory extends TileEntityFactory sideOutputs.add(new SideData(EnumColor.GREY, new int[0])); sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {0})); sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {1})); - sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {4, 5, 6, 7, 8, 9, 10})); - sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {11, 12, 13, 14, 15, 16, 17})); - - sideConfig = new byte[] {4, 3, 0, 0, 2, 1}; + sideOutputs.add(new SideData(EnumColor.PURPLE, new int[] {4})); + sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {5, 6, 7, 8, 9, 10, 11})); + sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {12, 13, 14, 15, 16, 17, 18})); - ejectorComponent = new TileComponentEjector(this, sideOutputs.get(4)); + ejectorComponent = new TileComponentEjector(this, sideOutputs.get(5)); } }