Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
added rock breaker recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 30, 2024
1 parent 3553ee3 commit 949d8a6
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,15 @@ private static void addBasicMachineRecipes(Consumer<FinishedRecipe> output, Anti
.put('C', circuit)
.put('H', hull)
.put('W', WIRE_GETTER.apply(PipeSize.TINY, tier)).build(), "SVS", "CHC", "WWW"));
add(ROCK_BREAKER, tier, (m, item) -> provider.addItemRecipe(output, "machines", item,
ImmutableMap.<Character, Object>builder()
.put('P', piston)
.put('M', motor)
.put('G', GregTechTags.GRIND_HEADS)
.put('C', cable)
.put('H', hull)
.put('g', glass)
.build(), "PMG", "CHC", "ggg"));
add(SCANNER, tier, (m,item) -> provider.addItemRecipe(output, "machines", item,
ImmutableMap.<Character, Object>builder()
.put('S', sensor)
Expand Down

0 comments on commit 949d8a6

Please sign in to comment.