From ef8a1f788ec7eac1eb49ea96f23caf3cf41f3d1b Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Thu, 21 Mar 2024 19:22:37 -0400 Subject: [PATCH] Update electricityTest.js --- mods/electricityTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/electricityTest.js b/mods/electricityTest.js index 73be4942..de4b87fb 100644 --- a/mods/electricityTest.js +++ b/mods/electricityTest.js @@ -18,7 +18,7 @@ doElectricity = function (pixel) { } else if (elements[newPixel.element].insulate != true) { // Otherwise heat the pixel (Resistance simulation) newPixel.temp += pixel.charge/4; - newPixel.chargeCD = 8; + if (con < 0.8) { newPixel.chargeCD = 8; } pixelTempCheck(newPixel); } }