Fix factories

This commit is contained in:
Aidan C. Brady 2013-11-23 15:21:01 -05:00
parent a27582971b
commit dca7663de9
2 changed files with 8 additions and 10 deletions

View file

@ -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));
}
}

View file

@ -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));
}
}