fixed bug where diesel's distillation temperature was above its autoignition point

This commit is contained in:
An Orbit 2024-01-18 16:16:11 -05:00 committed by GitHub
parent 4a2ec04240
commit 8acbe56938
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -13780,7 +13780,7 @@ Pixel size (rendering only): <input id="pixelSize"> (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;
}