diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-25 14:32:05 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-07-25 14:32:05 (GMT) |
| commit | 2189d298a7ae718b9d483cc3925bcb8fee854281 (patch) | |
| tree | b5922ae28bb578b926c2856f1681f1b08392777f /src/simulation/elements/FRZZ.cpp | |
| parent | fad383f3923cc04fb8b2ecd7a72cf5406832cf5d (diff) | |
| download | powder-2189d298a7ae718b9d483cc3925bcb8fee854281.zip powder-2189d298a7ae718b9d483cc3925bcb8fee854281.tar.gz | |
TPT: Move INST flood fill into a separate function 36de2f19f5
Diffstat (limited to 'src/simulation/elements/FRZZ.cpp')
| -rw-r--r-- | src/simulation/elements/FRZZ.cpp | 16 |
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; |
