Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master committed Nov 12, 2022
1 parent 88875ab commit 3a0eeea
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions src/main/java/com/glodblock/github/loader/RecipeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,7 @@ public void run() {
};

for (ItemBasicFluidStorageCell cell : cells) {
GameRegistry.addRecipe(new ShapedOreRecipe(cell, "hCW", "SKS", "WAs",
'h', "craftingToolHardHammer",
'C', "plateCertusQuartz",
'W', "screwCertusQuartz",
'S', "plateStainlessSteel",
'K', cell.getComponent(),
'A', "plateAluminium",
's', "craftingToolScrewdriver"));
GameRegistry.addRecipe(new ShapedOreRecipe(cell, "sCW", "SKS", "WAh",
'h', "craftingToolHardHammer",
'C', "plateCertusQuartz",
'W', "screwCertusQuartz",
'S', "plateStainlessSteel",
'K', cell.getComponent(),
'A', "plateAluminium",
's', "craftingToolScrewdriver"));
GameRegistry.addRecipe(new ShapedOreRecipe(cell, "GDG", "DCD", "III", 'D', "dustRedstone", 'G', AE2_QUARTZ_GLASS, 'C', cell.getComponent(), 'I', "ingotIron"));
GameRegistry.addRecipe(new ShapelessOreRecipe(cell, AE2_CELL_HOUSING, cell.getComponent()));
}
}
Expand Down

0 comments on commit 3a0eeea

Please sign in to comment.