diff options
author | botn365 <42187820+botn365@users.noreply.github.com> | 2020-02-01 00:49:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 23:49:00 +0000 |
commit | 5dd32bc8a506dca9507923ab3b35ab0460365f91 (patch) | |
tree | 5714548617b2b638229753ae221419796b805ace /src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java | |
parent | 27cbde2ac07d10b4892402e08f32f5dcaf3a4a08 (diff) | |
download | GT5-Unofficial-5dd32bc8a506dca9507923ab3b35ab0460365f91.tar.gz GT5-Unofficial-5dd32bc8a506dca9507923ab3b35ab0460365f91.tar.bz2 GT5-Unofficial-5dd32bc8a506dca9507923ab3b35ab0460365f91.zip |
$ Fixes by Bot
$ Fix dissasembler not consumin energy
$ Fix where having empty input busses would stop busses from working
$ Fix volcanus giving back wrong tempreture
$ Fix mixer not working
$ Fix maragin 250 and 300 not having a recipe
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java b/src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java index 74e269e932..2891741b2c 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/StaticFields59.java @@ -258,31 +258,31 @@ public class StaticFields59 { public static int getHeatingCapacityForCoilTier(int aCoilTier) { int mHeatingCapacity = 0; switch (aCoilTier) { - case 1: + case 0: mHeatingCapacity = 1800; break; - case 2: + case 1: mHeatingCapacity = 2700; break; - case 3: + case 2: mHeatingCapacity = 3600; break; - case 4: + case 3: mHeatingCapacity = 4500; break; - case 5: + case 4: mHeatingCapacity = 5400; break; - case 6: + case 5: mHeatingCapacity = 7200; break; - case 7: + case 6: mHeatingCapacity = 9000; break; - case 8: + case 7: mHeatingCapacity = 9900; break; - case 9: + case 8: mHeatingCapacity = 10800; break; default: |