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

@@ -7,6 +7,7 @@
- Fixed bug where the GUI didn't close when a block is broken, causing a dupe bug with the Portable Grid (raoulvdberge) - Fixed bug where the GUI didn't close when a block is broken, causing a dupe bug with the Portable Grid (raoulvdberge)
- Added support for External Storage on Interfaces and other Refined Storage blocks, so you can keep items in stock easier (raoulvdberge) - Added support for External Storage on Interfaces and other Refined Storage blocks, so you can keep items in stock easier (raoulvdberge)
- You now have to sneak to place the Portable Grid in the world (raoulvdberge) - You now have to sneak to place the Portable Grid in the world (raoulvdberge)
- The Machine Casing now requires 1 piece of stone in the middle (raoulvdberge)
### 1.4.10 ### 1.4.10
- Improved performance of network scanning (raoulvdberge) - Improved performance of network scanning (raoulvdberge)

View File

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