aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-14 15:21:13 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-14 15:21:13 +0000
commitdf8c981bd3dd0ba8c6bb3e538920f34e4e80fc76 (patch)
tree364ffa854046e9f47954bf8321fcd550d4b0bc67 /src/Java/gtPlusPlus/core/recipe
parent62732f2bbf70bec64811ddb2742e05dd5ea065f6 (diff)
downloadGT5-Unofficial-df8c981bd3dd0ba8c6bb3e538920f34e4e80fc76.tar.gz
GT5-Unofficial-df8c981bd3dd0ba8c6bb3e538920f34e4e80fc76.tar.bz2
GT5-Unofficial-df8c981bd3dd0ba8c6bb3e538920f34e4e80fc76.zip
% Made Control Cores Optional, they will still lock to the Core's tier if present.
% Tweaked Control Core recipes. % Updated CircleCI config.yml. $ Fixed mild issue where Control Core Modules could be shared between multiblocks.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
index 092214a714..54d9994edc 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java
@@ -1676,11 +1676,10 @@ public class RECIPES_Machines {
for (int i = 0; i < 10; i++) {
- boolean aDub = i >= 5;
-
+ boolean aDub = false;
ItemStack aPlateStack = aMat_A[i].getPlateDouble((GTNH ? 16 : 8) * (aDub ? 2 : 1));
- ItemStack aGearStack = aMat_B[i].getGear(GTNH ? 8 : 4 * (aDub ? 2 : 1));
- ItemStack aRodStack = aMat_A[i].getLongRod(GTNH ? 32 : 16 * (aDub ? 2 : 1));
+ ItemStack aGearStack = aMat_B[i].getGear(GTNH ? 4 : 2 * (aDub ? 2 : 1));
+ ItemStack aRodStack = aMat_A[i].getLongRod(GTNH ? 16 : 8 * (aDub ? 2 : 1));
ItemStack aScrewStack = aMat_B[i].getScrew(32 * (aDub ? 2 : 1));
if (!ItemUtils.checkForInvalidItems(aPlateStack)) {
@@ -1704,14 +1703,14 @@ public class RECIPES_Machines {
CORE.RA.addSixSlotAssemblingRecipe(
new ItemStack[] {
- aInputPrevTier[i],
+ CI.getEnergyCore(i, 4),
aPlateStack,
aGearStack,
aRodStack,
aScrewStack,
- ItemUtils.getItemStackOfAmountFromOreDict(CI.getTieredCircuitOreDictName((int) (4+Math.ceil((double) i / (double) 2))), GTNH ? (i * 2 * 2 * 2) : (i * 2 * 2))
+ ItemUtils.getItemStackOfAmountFromOreDict(CI.getTieredCircuitOreDictName((int) (4+Math.ceil((double) i / (double) 2))), GTNH ? (i * 2 * 2) : (i * 2))
},
- aMat_A[i].getFluid(144 * 4 * (i+1)), //Input Fluid
+ CI.getTieredFluid(i, 144 * 4 * (i+1)), //Input Fluid
aOutput[i],
60 * 20 * 1 * (i+1),
MaterialUtils.getVoltageForTier(i));