Update flipflop.js

This commit is contained in:
felixs-alt 2023-09-26 12:25:52 +02:00 committed by GitHub
parent 03e5678682
commit fd984eddaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ elements.flipflop = {
let Output = pixelMap[pixel.x+1][pixel.y]
let Input = pixelMap[pixel.x-1][pixel.y]
if (Output.x != undefined && Input.x != undefined){
if (typeof Output.x !== "undefined" && typeof Input.x !== "undefined"){
Output.charge = 0
if (Powerstate == "true" && Input.charge > 0.9) {
Powerstate == "false"