diff options
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py index 5fbdeab..80e4c59 100644 --- a/broadcast.py +++ b/broadcast.py @@ -614,7 +614,7 @@ for fname in args: if options.clamp: amp = max(min(amp, 1.0), 0.0) flags = 0 - if note.get('parent', None): + if note.get('par', None): flags |= PLF.SAMEPHASE for cl in cls: s.sendto(str(Packet(CMD.PLAY, int(pl_dur), int((pl_dur*1000000)%1000000), int(440.0 * 2**((pitch-69)/12.0)), amp, cl[2], flags)), cl[:2]) |