Skip to content

Commit

Permalink
Add Compressor recipe for snow balls -> snow (#1969)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vextin authored Sep 20, 2024
1 parent 730daaf commit bd63f0c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ private static void compressingRecipes(Consumer<FinishedRecipe> provider) {
.outputItems(new ItemStack(Blocks.CLAY))
.save(provider);

COMPRESSOR_RECIPES.recipeBuilder("snowballs_to_snow").duration(200).EUt(2)
.inputItems(new ItemStack(Items.SNOWBALL, 4))
.outputItems(new ItemStack(Items.SNOW_BLOCK))
.save(provider);

COMPRESSOR_RECIPES.recipeBuilder("glowstone").duration(300).EUt(2)
.inputItems(new ItemStack(Items.GLOWSTONE_DUST, 4))
.outputItems(new ItemStack(Blocks.GLOWSTONE))
Expand Down

0 comments on commit bd63f0c

Please sign in to comment.