diff --git a/mods/flipflop.js b/mods/flipflop.js index af4225f6..37c4b14b 100644 --- a/mods/flipflop.js +++ b/mods/flipflop.js @@ -14,7 +14,7 @@ elements.flipflop = { let Output = pixelMap[pixel.x+1][pixel.y] let Input = pixelMap[pixel.x-1][pixel.y] if (typeof Output !== "undefined" && typeof Input !== "undefined") { - if (Input.charge > 0.7) { + if (Input.charge > 0.45) { if (pixel.powerstate == "true") { pixel.powerstate = "false" pixel.color = "#CF300D"