diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-06-21 16:36:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 17:36:36 +0200 |
commit | f7689b7ea8185b6c528fe7934089fa8b56e645ae (patch) | |
tree | 48bd79c34de69766695ec26d60ab0de4370abdad /src | |
parent | 8ce44170ef99907b36d1f2c9d0aef6f4aa16426c (diff) | |
download | GT5-Unofficial-f7689b7ea8185b6c528fe7934089fa8b56e645ae.tar.gz GT5-Unofficial-f7689b7ea8185b6c528fe7934089fa8b56e645ae.tar.bz2 GT5-Unofficial-f7689b7ea8185b6c528fe7934089fa8b56e645ae.zip |
Fix a vat recipe conflict (#2677)
add circuit
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/BioRecipeLoader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/BioRecipeLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/BioRecipeLoader.java index abed08eb5e..f93d328042 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/BioRecipeLoader.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/BioRecipeLoader.java @@ -124,7 +124,7 @@ public class BioRecipeLoader { for (FluidStack fluidStack : easyFluids) { if (CropsPlusPlus.isModLoaded()) { BWRecipes.instance.addBacterialVatRecipe( - new ItemStack[] { new ItemStack(Items.sugar, 64) }, + new ItemStack[] { GT_Utility.getIntegratedCircuit(2), new ItemStack(Items.sugar, 64) }, new FluidStack[] { new FluidStack(fluidStack, 100) }, BioCultureLoader.CommonYeast, new FluidStack[] { FluidRegistry.getFluidStack("potion.ghp", 1) }, |