From a78bd78bfc279f5428929c8b6bf8ce5ee6a881b3 Mon Sep 17 00:00:00 2001 From: jacksonmj Date: Mon, 6 Oct 2014 12:57:32 +0100 Subject: [PATCH] Fix SNOW(SLTW) melting temperature, and change ACID hardness value to make more sense on the wiki --- src/simulation/elements/ACID.cpp | 2 +- src/simulation/elements/SNOW.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simulation/elements/ACID.cpp b/src/simulation/elements/ACID.cpp index 4ea94ffea..7fc7a32b1 100644 --- a/src/simulation/elements/ACID.cpp +++ b/src/simulation/elements/ACID.cpp @@ -22,7 +22,7 @@ Element_ACID::Element_ACID() Flammable = 40; Explosive = 0; Meltable = 0; - Hardness = 1; + Hardness = 0; Weight = 10; diff --git a/src/simulation/elements/SNOW.cpp b/src/simulation/elements/SNOW.cpp index 76c0494df..a5f468617 100644 --- a/src/simulation/elements/SNOW.cpp +++ b/src/simulation/elements/SNOW.cpp @@ -39,7 +39,7 @@ Element_SNOW::Element_SNOW() HighPressureTransition = NT; LowTemperature = ITL; LowTemperatureTransition = NT; - HighTemperature = 273.0f; + HighTemperature = 252.05f; HighTemperatureTransition = ST; Update = &Element_SNOW::update;