From a518e9fa13878c80a7382b4f0a460003865b3596 Mon Sep 17 00:00:00 2001 From: Steelux <70096037+Steelux8@users.noreply.github.com> Date: Mon, 29 Aug 2022 17:37:36 +0100 Subject: Bugfix and Rework of the GT++ Solar Tower (#290) * Bugfix and Rework of the Solar Tower - Fixed several bugs that prevented the solar tower from recognizing the reflectors; - Added more information on the tooltip; - Reworked the math behind internal heat, and conversion from Cold to Hot Solar Salt; - Removed some MathUtils logs that spammed a log every tick if GT++ logs were enabled; - Changed the values in the conversion from Hot Solar Salt to SH Steam. * Fix Tooltip, Refactor Math * Additional Fixes * spotlessApply (#319) Co-authored-by: Steelux <70096037+Steelux8@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> * Revert "spotlessApply (#319)" This reverts commit d75249d1e98a4f99db072548263065983f86b3a3. * fix Co-authored-by: kuba6000 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/gtPlusPlus/core/recipe') diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index f1c4aab409..11764b2c8b 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -1497,7 +1497,7 @@ public class RECIPES_GREGTECH { ItemUtils.getItemStackOfAmountFromOreDict("stickBlackSteel", 8) }, null, - ItemUtils.getSimpleStack(ModBlocks.blockWitherGuard, 64), + ItemUtils.getSimpleStack(ModBlocks.blockWitherGuard, 32), 30 * 20, 500); @@ -1710,7 +1710,7 @@ public class RECIPES_GREGTECH { CORE.RA.addSixSlotAssemblingRecipe( new ItemStack[] { ItemUtils.getGregtechCircuit(17), - ItemUtils.getItemStackOfAmountFromOreDict("plateTrinium", GTNH ? 64 : 32), + ItemUtils.getItemStackOfAmountFromOreDict("plateRefinedTrinium", GTNH ? 64 : 32), CI.getSensor(6, GTNH ? 6 : 3), CI.getBolt(7, GTNH ? 64 : 32), ItemUtils.getItemStackOfAmountFromOreDict("wireFinePlatinum", GTNH ? 64 : 32), @@ -1847,9 +1847,9 @@ public class RECIPES_GREGTECH { 0); HotFuel.addNewHotFuel( - MISC_MATERIALS.SOLAR_SALT_HOT.getFluidStack(1000), - MISC_MATERIALS.SOLAR_SALT_COLD.getFluidStack(1000), - FluidUtils.getSuperHeatedSteam(10000), + MISC_MATERIALS.SOLAR_SALT_HOT.getFluidStack(100), + MISC_MATERIALS.SOLAR_SALT_COLD.getFluidStack(100), + FluidUtils.getSuperHeatedSteam(100000), 0); /* -- cgit