aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java
diff options
context:
space:
mode:
authorRunakai1 <48415331+Runakai1@users.noreply.github.com>2023-06-18 14:50:58 +0200
committerGitHub <noreply@github.com>2023-06-18 14:50:58 +0200
commit44b532bbcebb78f8732c3f0528457b89656be2f7 (patch)
tree49f4bff38bf3216578257c0e1d2c43a9dd5151d3 /src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java
parenta27f664199bfe5af7b654a1925f9cfa69ebe4ec8 (diff)
downloadGT5-Unofficial-44b532bbcebb78f8732c3f0528457b89656be2f7.tar.gz
GT5-Unofficial-44b532bbcebb78f8732c3f0528457b89656be2f7.tar.bz2
GT5-Unofficial-44b532bbcebb78f8732c3f0528457b89656be2f7.zip
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
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java')
-rw-r--r--src/main/java/gregtech/api/util/GT_ApiaryUpgrade.java18
1 files changed, 9 insertions, 9 deletions
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);