summaryrefslogtreecommitdiff
path: root/ihl/worldgen/ores/IHLFluid.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-05-31 21:23:10 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-05-31 21:23:10 +0300
commit50d62a1298f05d6d440a5bc261a0fdf9ffece893 (patch)
treea23ad25c213978306a5c9f5e747566b01802078b /ihl/worldgen/ores/IHLFluid.java
parentec543445cec03fb1d638fd8aab87daebb3b1c534 (diff)
energy net fix attempt
Diffstat (limited to 'ihl/worldgen/ores/IHLFluid.java')
-rw-r--r--ihl/worldgen/ores/IHLFluid.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/ihl/worldgen/ores/IHLFluid.java b/ihl/worldgen/ores/IHLFluid.java
index d35dc73..5e2e08b 100644
--- a/ihl/worldgen/ores/IHLFluid.java
+++ b/ihl/worldgen/ores/IHLFluid.java
@@ -120,14 +120,7 @@ public class IHLFluid extends Fluid {
IHLFluidType type = localFluidRegistry.get(fluid.getName());
return type.boilingPoint;
} else {
- if (fluid.getName() == "steam" || fluid.getName() == "ic2steam"
- || fluid.getName() == "ic2superheatedsteam") {
- return 373;
- } else if (fluid.isGaseous()) {
- return fluid.getTemperature();
- } else {
- return fluid.getTemperature() + 100;
- }
+ return 373;
}
}