bug fixes for oop changes

This commit is contained in:
Redo
2020-09-18 00:17:49 -05:00
parent 58133caa95
commit 8323cd065d
6 changed files with 39 additions and 26 deletions

View File

@ -1,7 +1,4 @@
-- 2020-03-30
-- Requirement change: The gate's output will now depend only on the event, and not carry the input at all
return function(gate, argv)
gate.ports[2]:setstate(toboolean(argv[1]))
Gate.setportstate(gate, 2, toboolean(argv[1]))
end