diff options
author | boubou19 <miisterunknown@gmail.com> | 2022-01-31 17:46:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 17:46:23 +0100 |
commit | dc5084e77b8e2d527e3e020bd74be5c691b8925e (patch) | |
tree | 64533f9bfdc2aad340553f3625bf767a0c6c3c3c /src/main/java/com | |
parent | e74775cf42b430dd4e871d4e44a12f3669ad3d49 (diff) | |
parent | 6afe8d8c62f2d2c9c496c29f133cc962a6447a96 (diff) | |
download | GT5-Unofficial-dc5084e77b8e2d527e3e020bd74be5c691b8925e.tar.gz GT5-Unofficial-dc5084e77b8e2d527e3e020bd74be5c691b8925e.tar.bz2 GT5-Unofficial-dc5084e77b8e2d527e3e020bd74be5c691b8925e.zip |
Merge pull request #33 from GTNewHorizons/long-assline
Long Assline
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/github/technus/tectech/recipe/TT_recipeAdder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/github/technus/tectech/recipe/TT_recipeAdder.java b/src/main/java/com/github/technus/tectech/recipe/TT_recipeAdder.java index 71a5419500..0b3f203899 100644 --- a/src/main/java/com/github/technus/tectech/recipe/TT_recipeAdder.java +++ b/src/main/java/com/github/technus/tectech/recipe/TT_recipeAdder.java @@ -35,7 +35,7 @@ public class TT_recipeAdder extends GT_RecipeAdder { if(aFluidInputs==null) { aFluidInputs = nullFluid; } - if (aResearchItem==null || totalComputationRequired<=0 || aOutput == null || aInputs.length>15) { + if (aResearchItem==null || totalComputationRequired<=0 || aOutput == null || aInputs.length>16) { return false; } for(ItemStack tItem : aInputs){ @@ -59,7 +59,7 @@ public class TT_recipeAdder extends GT_RecipeAdder { if(aFluidInputs==null) { aFluidInputs = nullFluid; } - if (aResearchItem==null || totalComputationRequired<=0 || aOutput == null || aInputs.length>15 || aFluidInputs.length>4 || assDuration<=0 || assEUt<=0) { + if (aResearchItem==null || totalComputationRequired<=0 || aOutput == null || aInputs.length>16 || aFluidInputs.length>4 || assDuration<=0 || assEUt<=0) { return false; } |