Skip to content

Commit

Permalink
update recipe for storage t2
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilzinsel64 committed Jan 11, 2025
1 parent 1f32651 commit 818a64e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/zerofall/ezstorage/init/EZBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public static void registerRecipes() {
String t1_1 = "logWood";
String t1_2 = "stickWood";

String t2_1 = "blockIron";
String t2_2 = OreDictionary.getOres("blockBronze").size() != 0 ? "blockBronze" : t2_1;
String t2_1 = OreDictionary.getOres("blockBronze").size() != 0 ? "blockBronze" : "blockIron";
String t2_2 = t2_1;

GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(storage_core), "ABA", "BCB", "ABA", 'A', t1_1, 'B', t1_2, 'C', Blocks.chest));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(storage_box), "ABA", "B B", "ABA", 'A', "logWood", 'B', Blocks.chest));
Expand Down

0 comments on commit 818a64e

Please sign in to comment.