From 44b532bbcebb78f8732c3f0528457b89656be2f7 Mon Sep 17 00:00:00 2001 From: Runakai1 <48415331+Runakai1@users.noreply.github.com> Date: Sun, 18 Jun 2023 14:50:58 +0200 Subject: Fix Precision (#2091) * Fix Precision This increases the maximum amount of temperature upgrades from 8 to 10 while halfing the amount of temperature boost they give to allow for more precision. Previously you were not able to simulate a warm biome in normal/normal. Doubles Boost, halfes energy consumption. * increase to 16 --- src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/main/java/gregtech/api/util') diff --git a/src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java b/src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java index a31038dd60..c0ada7e002 100644 --- a/src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java +++ b/src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java @@ -49,17 +49,17 @@ public enum GT_ApiaryUpgrade { mods.biomeOverride = BiomeGenBase.taiga; mods.energy *= 1.5f; }), - dryer(UNIQUE_INDEX.DRYER_UPGRADE, 32214, 8, (mods, n) -> { - mods.humidity -= 0.25f * n; - mods.energy *= Math.pow(1.05f, n); + dryer(UNIQUE_INDEX.DRYER_UPGRADE, 32214, 16, (mods, n) -> { + mods.humidity -= 0.125f * n; + mods.energy *= Math.pow(1.025f, n); }), automation(UNIQUE_INDEX.AUTOMATION_UPGRADE, 32215, 1, (mods, n) -> { mods.isAutomated = true; mods.energy *= 1.1f; }), - humidifier(UNIQUE_INDEX.HUMIDIFIER_UPGRADE, 32216, 8, (mods, n) -> { - mods.humidity += 0.25f * n; - mods.energy *= Math.pow(1.1f, n); + humidifier(UNIQUE_INDEX.HUMIDIFIER_UPGRADE, 32216, 16, (mods, n) -> { + mods.humidity += 0.125f * n; + mods.energy *= Math.pow(1.05f, n); }), hell(UNIQUE_INDEX.HELL_UPGRADE, 32217, 1, (mods, n) -> { mods.biomeOverride = BiomeGenBase.hell; @@ -73,9 +73,9 @@ public enum GT_ApiaryUpgrade { mods.biomeOverride = BiomeGenBase.desert; mods.energy *= 1.2f; }), - cooler(UNIQUE_INDEX.COOLER_UPGRADE, 32220, 8, (mods, n) -> { - mods.temperature -= 0.25f * n; - mods.energy *= Math.pow(1.05f, n); + cooler(UNIQUE_INDEX.COOLER_UPGRADE, 32220, 16, (mods, n) -> { + mods.temperature -= 0.125f * n; + mods.energy *= Math.pow(1.025f, n); }), lifespan(UNIQUE_INDEX.LIFESPAN_UPGRADE, 32221, 4, (mods, n) -> { mods.lifespan /= Math.pow(1.5f, n); -- cgit