From 8acbe56938fe2c77c28ec58daf7591836a26048e Mon Sep 17 00:00:00 2001 From: An Orbit <68935009+orbit-loona@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:16:11 -0500 Subject: [PATCH] fixed bug where diesel's distillation temperature was above its autoignition point --- mods/a_mod_by_alice.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/a_mod_by_alice.js b/mods/a_mod_by_alice.js index b9a67aa0..ff7dd31a 100644 --- a/mods/a_mod_by_alice.js +++ b/mods/a_mod_by_alice.js @@ -13780,7 +13780,7 @@ Pixel size (rendering only): (Use if the save looks cut o color: "#d3d9b4", behavior: behaviors.LIQUID, tick: function(pixel) { - if (pixel.temp > 210 && !pixel.burning) { + if (pixel.temp > 300 && !pixel.burning) { pixel.burning = true; pixel.burnStart = pixelTicks; }