Skip to content

Commit

Permalink
Switching Hay Bale recipe from compressor to packager (#1592)
Browse files Browse the repository at this point in the history
  • Loading branch information
LAGIdiot committed May 17, 2021
1 parent 9c0a704 commit 2ed876a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/java/gregtech/loaders/recipe/MachineRecipeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@

public class MachineRecipeLoader {

private MachineRecipeLoader() {
}

public static void init() {
ChemistryRecipes.init();
FuelRecipes.registerFuels();
Expand All @@ -81,7 +84,13 @@ public static void init() {
private static void registerBendingCompressingRecipes() {
RecipeMaps.COMPRESSOR_RECIPES.recipeBuilder().inputs(new ItemStack(Blocks.ICE, 2, OreDictionary.WILDCARD_VALUE)).outputs(new ItemStack(Blocks.PACKED_ICE)).buildAndRegister();
RecipeMaps.COMPRESSOR_RECIPES.recipeBuilder().input(OrePrefix.dust, Materials.Ice, 1).outputs(new ItemStack(Blocks.ICE)).buildAndRegister();
RecipeMaps.COMPRESSOR_RECIPES.recipeBuilder().inputs(new ItemStack(Items.WHEAT, 9)).outputs(new ItemStack(Blocks.HAY_BLOCK)).buildAndRegister();

RecipeMaps.PACKER_RECIPES.recipeBuilder()
.inputs(new ItemStack(Items.WHEAT, 9))
.inputs(new CountableIngredient(new IntCircuitIngredient(9), 0))
.outputs(new ItemStack(Blocks.HAY_BLOCK))
.duration(200).EUt(2)
.buildAndRegister();

RecipeMaps.COMPRESSOR_RECIPES.recipeBuilder()
.input(OrePrefix.dust, Materials.Fireclay)
Expand Down

0 comments on commit 2ed876a

Please sign in to comment.