From fb85025e5d3decc0a4af331777ff474db74e0618 Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Thu, 28 Dec 2023 15:02:24 +0100 Subject: [PATCH] bugfix --- Classes/BuboArray.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/BuboArray.sc b/Classes/BuboArray.sc index bd7904a..1d4de2c 100644 --- a/Classes/BuboArray.sc +++ b/Classes/BuboArray.sc @@ -4,7 +4,7 @@ arg repeats=inf; var pat; if (this[0].isString, - { pat = Pseq(this[0], inf).collect({|i| Bank(i)}); }, + { pat = Pseq([this[0]], inf).collect({|i| Bank(i)}); }, { pat = this[0].collect({|i| Bank(i)})} ); ^Pindex(pat, this[1], repeats)