fixed bug where diesel's distillation temperature was above its autoignition point
This commit is contained in:
parent
4a2ec04240
commit
8acbe56938
|
|
@ -13780,7 +13780,7 @@ Pixel size (rendering only): <input id="pixelSize"> (Use if the save looks cut o
|
||||||
color: "#d3d9b4",
|
color: "#d3d9b4",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
if (pixel.temp > 210 && !pixel.burning) {
|
if (pixel.temp > 300 && !pixel.burning) {
|
||||||
pixel.burning = true;
|
pixel.burning = true;
|
||||||
pixel.burnStart = pixelTicks;
|
pixel.burnStart = pixelTicks;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue