From dfcc970c09f6f2dc866394cb821e7f85ebb55836 Mon Sep 17 00:00:00 2001 From: Emik Date: Mon, 23 Feb 2026 23:46:45 +0100 Subject: [PATCH] Fix visual bug --- src/challenge.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/challenge.lua b/src/challenge.lua index 754ea61..7eaa669 100644 --- a/src/challenge.lua +++ b/src/challenge.lua @@ -6,7 +6,7 @@ end local function adder(tbl) return function(v) - table.insert(tbl, {id = v.key}) + table.insert(tbl, {id = v.key, type = "blind"}) end end @@ -245,7 +245,7 @@ q(function() {G.P_BLINDS, is_banned_from_pastry, pastries.banned_other}, {G.P_CENTERS, is_center_banned_from_pastry, pastries.banned_cards}, {G.P_BLINDS, is_showdown_except "bl_final_acorn", amber.banned_other}, - {G.P_BLINDS, is_showdown_except "bl_final_bell ", cerulean.banned_other}, + {G.P_BLINDS, is_showdown_except "bl_final_bell", cerulean.banned_other}, {G.P_BLINDS, is_showdown_except "bl_final_heart", crimson.banned_other}, {G.P_BLINDS, is_showdown_except "bl_final_leaf", verdant.banned_other}, {G.P_BLINDS, is_showdown_except "bl_final_vessel", violet.banned_other},