hopefully this works

This commit is contained in:
JustAGenericUsername 2024-01-02 18:35:31 -05:00
parent ddb86fd17c
commit 49520b4637
1 changed files with 1 additions and 1 deletions

View File

@ -1480,7 +1480,7 @@ elements.mixer = {
var coord = squareCoords[i];
var x = pixel.x+coord[0];
var y = pixel.y+coord[1];
if (!isEmpty(x,y)) {
if (!isEmpty(x,y, true) && !elements[pixelMap[x][y].element].noMix) {
var otherPixel = pixelMap[x][y];
pixel.mixList.push(otherPixel);
}