aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java
diff options
context:
space:
mode:
authorHoleFish <48403212+HoleFish@users.noreply.github.com>2024-02-28 19:51:24 +0800
committerGitHub <noreply@github.com>2024-02-28 12:51:24 +0100
commit63a65e8d98ede6b76d455288ce27d3f8a621223d (patch)
tree29dde52e9bc8630f6d358f6f6b08c76679229e53 /src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java
parent5497075f54732ccf3c7580fe311a2327ebb05cb2 (diff)
downloadGT5-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/recipe/ChemicalPlantFrontend.java')
-rw-r--r--src/main/java/gtPlusPlus/api/recipe/ChemicalPlantFrontend.java4
1 files changed, 2 insertions, 2 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