diff --git a/mods/doElectricity changes.js b/mods/doElectricity changes.js index a7d0e139..9d7fc59b 100644 --- a/mods/doElectricity changes.js +++ b/mods/doElectricity changes.js @@ -26,8 +26,8 @@ function doElectricity(pixel) { }; } } - else if (elements[newPixel.element].insulate != true) { // Otherwise heat the pixel (Resistance simulation) - newPixel.temp += pixel.charge/4; + else if (elements[newPixel.element].insulate != true && !elements[newPixel.element].noResistance) { // Otherwise heat the pixel (Resistance simulation) + newPixel.temp += isNaN(pixel.charge) ? 0.25 : pixel.charge/4; pixelTempCheck(newPixel); } }