From 49520b4637a04ef84029eeb38b100c21203e8ad0 Mon Sep 17 00:00:00 2001 From: JustAGenericUsername Date: Tue, 2 Jan 2024 18:35:31 -0500 Subject: [PATCH] hopefully this works --- mods/nousersthings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index cc3d64e6..1e7766e9 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -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); }