Add recipe for grid filter

This commit is contained in:
Raoul Van den Berge
2016-07-30 01:57:03 +02:00
parent bd89dd3c17
commit 462781658c

View File

@@ -467,6 +467,16 @@ public class CommonProxy {
new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC), new ItemStack(RefinedStorageItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC),
new ItemStack(RefinedStorageBlocks.EXPORTER) new ItemStack(RefinedStorageBlocks.EXPORTER)
)); ));
// Grid Filter
GameRegistry.addShapedRecipe(new ItemStack(RefinedStorageItems.GRID_FILTER),
"EPE",
"PHP",
"EPE",
'E', new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON),
'P', new ItemStack(Items.PAPER),
'H', new ItemStack(Blocks.HOPPER)
);
} }
public void init(FMLInitializationEvent e) { public void init(FMLInitializationEvent e) {