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

Commit

Permalink
fixed water amount and length for bath paper recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 15, 2023
1 parent 0d674f7 commit 9312676
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions common/src/main/java/muramasa/gregtech/loader/machines/Bath.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ public class Bath {
public static void init() {
BATHING.RB()
.ii(RecipeIngredient.of(AntimatterMaterialTypes.DUST.get(AntimatterMaterials.Wood),1))
.fi(AntimatterMaterials.Water.getLiquid(100))
.fi(AntimatterMaterials.Water.getLiquid(125))
.io(new ItemStack(Items.PAPER))
.add("paper",200);
.add("paper",16);
BATHING.RB()
.ii(RecipeIngredient.of(Items.SUGAR_CANE,1))
.fi(AntimatterMaterials.Water.getLiquid(100))
.fi(AntimatterMaterials.Water.getLiquid(125))
.io(new ItemStack(Items.PAPER))
.add("paper_1",100);
.add("paper_1",16);
BATHING.RB()
.ii(RecipeIngredient.of(Items.NETHER_STAR,1))
.fi(Radon.getGas(1250))
.io(new ItemStack(GregTechData.QuantumStar))
.add("quantum_star",96*20);
BATHING.RB()
.ii(RecipeIngredient.of(Items.DIAMOND,1))
.ii(GEM.getMaterialIngredient(Diamond, 1))
.fi(Netherite.getLiquid(L/4))
.io(GEM.get(NetherizedDiamond))
.add("netherized_diamond_recipe",144);
Expand Down

0 comments on commit 9312676

Please sign in to comment.