From 6226713c4dfeff4d66a4ff75a70ea7e886714585 Mon Sep 17 00:00:00 2001 From: digiholic Date: Fri, 30 Jun 2023 16:34:53 -0600 Subject: [PATCH] MMBN3: Press program now has proper color index when received remotely (#1918) --- data/lua/connector_mmbn3.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/lua/connector_mmbn3.lua b/data/lua/connector_mmbn3.lua index e584121a..8482bf85 100644 --- a/data/lua/connector_mmbn3.lua +++ b/data/lua/connector_mmbn3.lua @@ -354,7 +354,7 @@ end local getProgramColorIndex = function(program_id, program_color) -- The general case, most programs use white pink or yellow. This is the values the enums already have - if program_id >= 23 and program_id <= 47 then + if program_id >= 20 and program_id <= 47 then return program_color-1 end --The final three programs only have a color index 0, so just return those