From 07427291890688faa92f45a3b3fe06107e2de982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lumi=C3=A8re=20=C3=89lev=C3=A9?= <88174309+PoneyClairDeLune@users.noreply.github.com> Date: Fri, 11 Oct 2024 20:37:49 +0000 Subject: [PATCH] Enabled channel conquering under SD as well. What the hell Roland... Also channel conquering might be better renamed to automatic channel allocation. --- src/state/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/index.mjs b/src/state/index.mjs index e350588..817816d 100644 --- a/src/state/index.mjs +++ b/src/state/index.mjs @@ -400,7 +400,7 @@ let OctaviaDevice = class extends CustomEventSource { // Allow part assigning via meta let metaChosen = (upThis.#trkAsReq[track] - 1) * 16 + part; return metaChosen; - } else if (upThis.#mode == modeMap.sc) { + } else if (upThis.#mode == modeMap.sc || upThis.#mode == modeMap.sd) { // Do not conquer channels if requested. if (noConquer == 1) { return part;