diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-04-05 13:01:11 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-04-05 13:01:11 +0000 |
| commit | af3270c083706605eb101821965e4b63707a46de (patch) | |
| tree | d676fd5509d2f44294c3a590c73fd179b4b1c992 | |
| parent | add 'bang' builtin (diff) | |
| download | alive-af3270c083706605eb101821965e4b63707a46de.tar.gz alive-af3270c083706605eb101821965e4b63707a46de.zip | |
lib/pilot: fix
| -rw-r--r-- | lib/pilot.moon | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pilot.moon b/lib/pilot.moon index 1d6b554..00d2d3a 100644 --- a/lib/pilot.moon +++ b/lib/pilot.moon @@ -59,8 +59,9 @@ play_ = ValueStream.meta tick: => { :chan, :octv, :note, :args } = @inputs + args = for a in *args do a! for note in *note! - send { chan!, octv!, note! }, args + send { chan!, octv!, note }, args effect = ValueStream.meta meta: |
