diff options
author | miozune <miozune@gmail.com> | 2022-08-16 00:53:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 17:53:17 +0200 |
commit | b645f2ddd9dc240e587f54b90b4efd536623fce7 (patch) | |
tree | c9f04c28264c16cb573f0f86599e0ba6410b1af1 /src | |
parent | 7e93aca8588aea28188d97aaa79a6c7d5365a4f5 (diff) | |
download | GT5-Unofficial-b645f2ddd9dc240e587f54b90b4efd536623fce7.tar.gz GT5-Unofficial-b645f2ddd9dc240e587f54b90b4efd536623fce7.tar.bz2 GT5-Unofficial-b645f2ddd9dc240e587f54b90b4efd536623fce7.zip |
Clay balance (#277)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 4 | ||||
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java | 12 |
2 files changed, 9 insertions, 7 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 00f3e05c36..1ef0b51935 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -2014,9 +2014,9 @@ public class RECIPES_GREGTECH { } private static void compressorRecipes() { - GT_ModHandler.addCompressionRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustSmallClay", 4), + GT_ModHandler.addCompressionRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustClay", 1), ItemUtils.getItemStackOfAmountFromOreDict("plateClay", 1)); - GT_ModHandler.addCompressionRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustSmallMeatRaw", 4), + GT_ModHandler.addCompressionRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustMeatRaw", 1), ItemUtils.getItemStackOfAmountFromOreDict("plateMeatRaw", 1)); GT_ModHandler.addCompressionRecipe(ItemUtils.getItemStackOfAmountFromOreDict("dustMeatRaw", 9), ItemUtils.getItemStackOfAmountFromOreDict("blockMeatRaw", 1)); diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java index a9bb0b693e..ff0dbb5aa3 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechConduits.java @@ -385,32 +385,34 @@ public class GregtechConduits { ItemUtils.getItemStackOfAmountFromOreDict("pipe"+"Large"+output, 1)); if (pipeIngot != null && ItemUtils.checkForInvalidItems(pipeIngot)) { + // 1 Clay Plate = 1 Clay Dust = 2 Clay Ball + int inputMultiplier = materialName.equals("Clay") ? 2 : 1; GT_Values.RA.addExtruderRecipe( - ItemUtils.getSimpleStack(pipeIngot, 1), + ItemUtils.getSimpleStack(pipeIngot, 1 * inputMultiplier), ItemList.Shape_Extruder_Pipe_Tiny.get(0), ItemUtils.getItemStackOfAmountFromOreDictNoBroken("pipe"+"Tiny"+output, 2), 5, eut); GT_Values.RA.addExtruderRecipe( - ItemUtils.getSimpleStack(pipeIngot, 1), + ItemUtils.getSimpleStack(pipeIngot, 1 * inputMultiplier), ItemList.Shape_Extruder_Pipe_Small.get(0), ItemUtils.getItemStackOfAmountFromOreDict("pipe"+"Small"+output, 1), 10, eut); GT_Values.RA.addExtruderRecipe( - ItemUtils.getSimpleStack(pipeIngot, 3), + ItemUtils.getSimpleStack(pipeIngot, 3 * inputMultiplier), ItemList.Shape_Extruder_Pipe_Medium.get(0), ItemUtils.getItemStackOfAmountFromOreDict("pipe"+"Medium"+output, 1), 1*20, eut); GT_Values.RA.addExtruderRecipe( - ItemUtils.getSimpleStack(pipeIngot, 6), + ItemUtils.getSimpleStack(pipeIngot, 6 * inputMultiplier), ItemList.Shape_Extruder_Pipe_Large.get(0), ItemUtils.getItemStackOfAmountFromOreDict("pipe"+"Large"+output, 1), 2*20, eut); GT_Values.RA.addExtruderRecipe( - ItemUtils.getSimpleStack(pipeIngot, 12), + ItemUtils.getSimpleStack(pipeIngot, 12 * inputMultiplier), ItemList.Shape_Extruder_Pipe_Huge.get(0), ItemUtils.getItemStackOfAmountFromOreDict("pipe"+"Huge"+output, 1), 4*20, eut); |