From 132dfa2a2e46fe5600a5d3af3f985d3910986962 Mon Sep 17 00:00:00 2001 From: felixs-alt <114471609+felixs-alt@users.noreply.github.com> Date: Wed, 27 Sep 2023 09:03:19 +0200 Subject: [PATCH] Update flipflop.js --- mods/flipflop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/flipflop.js b/mods/flipflop.js index 73ee93f6..216ee166 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.4) { + if (Input.charge > 0.7) { if (pixel.powerstate == "true") { Input.charge = 0 pixel.powerstate = "false"