The Machine Casing now requires 1 piece of stone in the middle

This commit is contained in:
Raoul Van den Berge
2017-06-05 01:30:28 +02:00
parent 85717c7146
commit b18b37a1d3
2 changed files with 6 additions and 4 deletions

View File

@@ -250,12 +250,13 @@ public class ProxyCommon {
);
// Machine Casing
GameRegistry.addRecipe(new ItemStack(RSBlocks.MACHINE_CASING),
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RSBlocks.MACHINE_CASING),
"EEE",
"E E",
"ESE",
"EEE",
'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON)
);
'E', new ItemStack(RSItems.QUARTZ_ENRICHED_IRON),
'S', "stone"
));
// Construction Core
GameRegistry.addShapelessRecipe(new ItemStack(RSItems.CORE, 1, ItemCore.TYPE_CONSTRUCTION),