diff options
author | Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> | 2023-02-14 07:14:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 08:14:56 +0100 |
commit | 88ba53a1af16ff753efdaaddf92d554af22a5794 (patch) | |
tree | 6c755e05971ca840a112363422d4b7242a4fed7f /src/main/java/gregtech/api/interfaces | |
parent | 7a41e4ebce3b712011d6e1495b6c368cc1f4bebf (diff) | |
download | GT5-Unofficial-88ba53a1af16ff753efdaaddf92d554af22a5794.tar.gz GT5-Unofficial-88ba53a1af16ff753efdaaddf92d554af22a5794.tar.bz2 GT5-Unofficial-88ba53a1af16ff753efdaaddf92d554af22a5794.zip |
Fix missing textures (#1732)
* New texture
* Blade
* Change molten space and time names.
* Update fluid names
* Bump dep of AE2
* Bump dep of AE2
* spotlessApply (#1733)
Co-authored-by: GitHub GTNH Actions <>
* New fluid solidifer method
* Space
* Spotless
* New recipes for new white dwarf matter shapes.
* Universium block
* Universium nanites
* Spotless
* Add some fine wires
---------
Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/api/interfaces')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java index 342d3a5403..bda2523811 100644 --- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java @@ -649,6 +649,13 @@ public interface IGT_RecipeAdder { boolean addFluidSolidifierRecipe(ItemStack aMold, FluidStack aInput, ItemStack aOutput, int aDuration, int aEUt); /** + * Adds a Recipe for the Fluid Solidifier + */ + boolean addFluidSolidifierRecipe(final ItemStack[] itemInputs, final FluidStack[] fluidInputs, + final ItemStack[] itemOutputs, final FluidStack[] fluidOutputs, final int EUPerTick, + final int aDurationInTicks); + + /** * Adds a Recipe for Fluid Smelting */ boolean addFluidSmelterRecipe(ItemStack aInput, ItemStack aRemains, FluidStack aOutput, int aChance, int aDuration, @@ -926,7 +933,7 @@ public interface IGT_RecipeAdder { /** * Add a breeder cell. - * + * * @param input raw stack. should be undamaged. * @param output breed output * @param heatMultiplier bonus progress per neutron pulse per heat step @@ -940,7 +947,7 @@ public interface IGT_RecipeAdder { /** * Add a fuel cell. - * + * * @param input raw stack. should be undamaged. * @param output depleted stack * @param aMox true if has mox behavior, false if uranium behavior. |