Move Storage Block's Machine Casings to the bottom, for consistency. #832 (#840)

* Storage block's machine casing on bottom, for...

consistency.

New recipe should be
-Basic Processor
-Storage Part
-Machine Casing

* Move Fluid Storage Storage Block's Machine...

...casing to bottom, for consistency.

New recipe should be:
-Basic Processor
-Fluid Storage Part
-Machine Casing
This commit is contained in:
VT-14
2017-01-07 11:36:35 -05:00
committed by Raoul
parent e1b92b8c09
commit 38be8e20f4
2 changed files with 2 additions and 2 deletions

View File

@@ -19,8 +19,8 @@ public class SoldererRecipeFluidStorage implements ISoldererRecipe {
this.type = type;
this.rows.add(new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC));
this.rows.add(new ItemStack(RSBlocks.MACHINE_CASING));
this.rows.add(new ItemStack(RSItems.FLUID_STORAGE_PART, 1, storagePart));
this.rows.add(new ItemStack(RSBlocks.MACHINE_CASING));
}
@Override

View File

@@ -19,8 +19,8 @@ public class SoldererRecipeStorage implements ISoldererRecipe {
this.type = type;
this.rows.add(new ItemStack(RSItems.PROCESSOR, 1, ItemProcessor.TYPE_BASIC));
this.rows.add(new ItemStack(RSBlocks.MACHINE_CASING));
this.rows.add(new ItemStack(RSItems.STORAGE_PART, 1, storagePart));
this.rows.add(new ItemStack(RSBlocks.MACHINE_CASING));
}
@Override