summaryrefslogtreecommitdiff
path: root/src/simulation/elements/FRZZ.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/elements/FRZZ.cpp')
-rw-r--r--src/simulation/elements/FRZZ.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/simulation/elements/FRZZ.cpp b/src/simulation/elements/FRZZ.cpp
index 8162672..47a5c0f 100644
--- a/src/simulation/elements/FRZZ.cpp
+++ b/src/simulation/elements/FRZZ.cpp
@@ -26,21 +26,21 @@ Element_FRZZ::Element_FRZZ()
Weight = 50;
- Temperature = 90.0f;
+ Temperature = 253.15f;
HeatConduct = 46;
- Description = "FREEZE";
+ Description = "Freeze powder. When melted, forms ice that always cools. Spreads with regular water.";
State = ST_SOLID;
Properties = TYPE_PART;
LowPressure = IPL;
LowPressureTransition = NT;
- HighPressure = IPH;
- HighPressureTransition = NT;
- LowTemperature = ITL;
- LowTemperatureTransition = NT;
- HighTemperature = ITH;
- HighTemperatureTransition = NT;
+ HighPressure = 1.8f;
+ HighPressureTransition = PT_SNOW;
+ LowTemperature = 50.0f;
+ LowTemperatureTransition = PT_ICEI;
+ HighTemperature = 273.15;
+ HighTemperatureTransition = PT_WATR;
Update = &Element_FRZZ::update;