From a014c81ad690a6f94bbf4ae12f84c3b066992393 Mon Sep 17 00:00:00 2001 From: moonheart08 Date: Mon, 5 Jul 2021 23:57:41 -0500 Subject: [PATCH] Last minute explosiveness enhancement for LITH (#788) --- src/simulation/elements/LITH.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/elements/LITH.cpp b/src/simulation/elements/LITH.cpp index 1568ac352..55cb4d5a3 100644 --- a/src/simulation/elements/LITH.cpp +++ b/src/simulation/elements/LITH.cpp @@ -112,7 +112,7 @@ static int update(UPDATE_FUNC_ARGS) } if (self.temp > 440.f) { - burnTimer = 1024 + (storedEnergy > 24 ? 24 : storedEnergy); + burnTimer = 1024 + (storedEnergy > 24 ? 96 : storedEnergy * 4); sim->part_change_type(ID(neighborData), x + rx, y + ry, PT_H2); hydrogenationFactor = 10; }