Skip to content

Commit

Permalink
fixed forge hammer plate recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Apr 7, 2024
1 parent 5b02dac commit eb0099c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public static void init(){
}
});
AntimatterMaterialTypes.PLATE.all().stream().filter(m -> m.has(AntimatterMaterialTypes.INGOT) && !m.has(RUBBERTOOLS)).forEach(m -> {
int in = 1;//AntimatterConfig.GAMEPLAY.LOSSY_PART_CRAFTING ? 3 : 1;
int out = 1;//AntimatterConfig.GAMEPLAY.LOSSY_PART_CRAFTING ? 2 : 1;
int in = 3;//AntimatterConfig.GAMEPLAY.LOSSY_PART_CRAFTING ? 3 : 1;
int out = 2;//AntimatterConfig.GAMEPLAY.LOSSY_PART_CRAFTING ? 2 : 1;
HAMMERING.RB().ii(INGOT.getMaterialIngredient(m, in)).io(PLATE.get(m, out)).add(m.getId() + "_plate", m.getMass(), 16);
});
AntimatterAPI.all(StoneType.class, GT4RRef.ID, s -> {
Expand Down

0 comments on commit eb0099c

Please sign in to comment.