Update flipflop.js
This commit is contained in:
parent
b90b6d90e5
commit
a81c89c2d2
|
|
@ -14,7 +14,7 @@ elements.flipflop = {
|
|||
let Output = pixelMap[pixel.x+1][pixel.y]
|
||||
let Input = pixelMap[pixel.x-1][pixel.y]
|
||||
|
||||
if (isEmpty(Output.x,Output.y) == false && isEmpty(Input.x,Input.y)){
|
||||
if (Output.x != undefined && Input.x != undefined)){
|
||||
Output.charge = 0
|
||||
if (Powerstate == "true" && Input.charge > 0.9) {
|
||||
Powerstate == "false"
|
||||
|
|
|
|||
Loading…
Reference in New Issue