you need to change :
default = rotate(weights=[1,2,1,5],[jingles,replays,jingles,singles])
ignore(output.dummy(default, fallible=true))
and :
default=fallback([
switch([
# ({ (0w or 1w or 2w or 3w or 4w or 5w or 6w) and 7h-12h}, silkmornings),
({ (0w or 2w or 3w) and 2h-7h}, chillout),
({ (3w) and 19h-21h}, hortaweekly),
({ (0w) and 20h-21h}, moranhelman),
({ (6w) and 21h-23h}, tranceilsessions),
# ({ (5w) and 18h-19h}, danmeyer),
({ (6w) and 18h-19h}, dashalove),
])
])
by something like that :
# Schedule
#silkmornings = rotate(weights = [1, 6], [jingles,silk])
chillout = rotate(weights = [1, 6], [jingles,chill])
hortaweekly = rotate(weights = [1, 1], [jingles,hortaclassic])
moranhelman = rotate(weights = [1, 1], [jingles,helmano])
tranceilsessions = rotate(weights = [1, 1], [jingles,tilsessions])
#danmeyer = rotate(weights = [1, 1], [jingles,danmeyerdeep])
dashalove = rotate(weights = [1, 1], [jingles,dasha])
rotating = rotate(weights=[1,2,1,5],[jingles,replays,jingles,singles])
default=fallback([
switch([
({ (0w or 1w or 2w or 3w or 4w or 5w or 6w) and 23h-07h}, rotating),
({ (0w or 2w or 3w) and 2h-7h}, chillout),
({ (3w) and 19h-21h}, hortaweekly),
({ (0w) and 20h-21h}, moranhelman),
({ (6w) and 21h-23h}, tranceilsessions),
({ (5w) and 18h-19h}, rotating),
({ (6w) and 18h-19h}, dashalove),
])
])
ignore(output.dummy(default, fallible=true))
It looks like you're new here. If you want to get involved, click one of these buttons!