sieutqbiqs is AFK: eating - 4 minutes agogrape have ignoreAir?

function doAirDensity(pixel) {
if (pixel.del) {return}
var info = elements[pixel.element];
if (!info.ignoreAir && info.density !== undefined && info.movable === true && info.density < airDensity) {
// Air Density
// if the pixel's state + ">" + newPixel's state is in validDensitySwaps, and the pixel's density is larger than the newPixel's density, swap the pixels
if (validDensitySwaps.gas[info.state]) {
// chance depending on the difference in density
if (Math.random() < (airDensity - info.density)/(airDensity + info.density)) {
tryMove(pixel,pixel.x,pixel.y-1);
}
}
}
}function doAirDensity(pixel) {
if (pixel.del) {return}
var info = elements[pixel.element];
if (!info.ignoreAir && info.density !== undefined && info.movable === true && info.density < airDensity) {
// Air Density
// if the pixel's state + ">" + newPixel's state is in validDensitySwaps, and the pixel's density is larger than the newPixel's density, swap the pixels
if (validDensitySwaps.gas[info.state]) {
// chance depending on the difference in density
if (Math.random() < (airDensity - info.density)/(airDensity + info.density)) {
tryMove(pixel,pixel.x,pixel.y-1);
}
}
}
}sieutqbiqselements.customcool = {
color: ["#0000FF", "#FFFFFF", "#0000FF"],
onSelect: function() {
var answer4 = parseInt(prompt("Please input the desired temperature decrease per tick. (In celsius)",(cc|undefined)));
if (!answer4) { return }
ct = answer4;
if (isNaN(answer4)) {
ct = 100
}
},
tool: function(pixel) {
pixel.temp = pixel.temp - ct,
pixelTempCheck(pixel)
},
category: "tools",
};elements.customcool = {
color: ["#0000FF", "#FFFFFF", "#0000FF"],
onSelect: function() {
var answer4 = parseInt(prompt("Please input the desired temperature decrease per tick. (In celsius)",(cc|undefined)));
if (!answer4) { return }
ct = answer4;
if (isNaN(answer4)) {
ct = 100
}
},
tool: function(pixel) {
pixel.temp = pixel.temp - ct,
pixelTempCheck(pixel)
},
category: "tools",
};