diff options
| author | HoleFish <48403212+HoleFish@users.noreply.github.com> | 2024-02-28 19:51:24 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-28 12:51:24 +0100 |
| commit | 63a65e8d98ede6b76d455288ce27d3f8a621223d (patch) | |
| tree | 29dde52e9bc8630f6d358f6f6b08c76679229e53 /src/main/java/gtPlusPlus/api | |
| parent | 5497075f54732ccf3c7580fe311a2327ebb05cb2 (diff) | |
| download | GT5-Unofficial-63a65e8d98ede6b76d455288ce27d3f8a621223d.tar.gz GT5-Unofficial-63a65e8d98ede6b76d455288ce27d3f8a621223d.tar.bz2 GT5-Unofficial-63a65e8d98ede6b76d455288ce27d3f8a621223d.zip | |
Fix several recipes (#842)
* chemiplant frontend
* fix missing coke oven recipe
* new cell-less recipes
* fix conflict hydrogen freezing recipe
* fix missing ethylbenzene-to-fuel recipes
Diffstat (limited to 'src/main/java/gtPlusPlus/api')
| -rw-r--r-- | src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java | 4 | ||||
| -rw-r--r-- | src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java b/src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java index 42d1fb9f50..c03ac8e146 100644 --- a/src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java +++ b/src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java @@ -32,7 +32,7 @@ public class ChemicalPlantFrontend extends RecipeMapFrontend { @Override public List<Pos2d> getItemOutputPositions(int itemOutputCount) { - return UIHelper.getGridPositions(itemOutputCount, 106, 15, 2); + return UIHelper.getGridPositions(itemOutputCount, 106, 6, 2); } @Override @@ -42,7 +42,7 @@ public class ChemicalPlantFrontend extends RecipeMapFrontend { @Override public List<Pos2d> getFluidOutputPositions(int fluidOutputCount) { - return UIHelper.getGridPositions(fluidOutputCount, 142, 15, 1, fluidOutputCount); + return UIHelper.getGridPositions(fluidOutputCount, 142, 6, 1, fluidOutputCount); } @Override diff --git a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java index f28216450d..1796529c84 100644 --- a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java +++ b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java @@ -93,7 +93,7 @@ public class GTPPRecipeMaps { ItemUtils.getItemStackFromFQRN("AdvancedSolarPanel:BlockMolecularTransformer", 1))) .build(); public static final RecipeMap<RecipeMapBackend> chemicalPlantRecipes = RecipeMapBuilder - .of("gtpp.recipe.fluidchemicaleactor").maxIO(4, 4, 4, 2) + .of("gtpp.recipe.fluidchemicaleactor").maxIO(4, 6, 4, 3) .slotOverlays((index, isFluid, isOutput, isSpecial) -> { if (isFluid) { if (isOutput) { |
