From 2b0bbd2689be1c30c6d96eea069deafb46cecd21 Mon Sep 17 00:00:00 2001 From: Lily-129 <68935009+Lily-129@users.noreply.github.com> Date: Thu, 20 Jan 2022 20:26:31 -0500 Subject: [PATCH] Exclude smoke from mix because it's annoying when i'm mixing a molten thing for alloying and the fire turns to smoke and turns my alloy into a cloud of metal "gas" --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index caeed11e..06f51276 100644 --- a/index.html +++ b/index.html @@ -4862,7 +4862,7 @@ else if (currentElement == "mix") { if (!isEmpty(x,y,true)) { var pixel = pixelMap[x][y]; - if (pixel.element != "fire" || shiftDown) { + if (pixel.element != "fire" & pixel.element != "smoke" || shiftDown) { mixList.push(pixel); } }