Fix visual bug

This commit is contained in:
Emik 2026-02-23 23:46:45 +01:00
parent 0b4201a796
commit dfcc970c09
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF

View file

@ -6,7 +6,7 @@ end
local function adder(tbl) local function adder(tbl)
return function(v) return function(v)
table.insert(tbl, {id = v.key}) table.insert(tbl, {id = v.key, type = "blind"})
end end
end end
@ -245,7 +245,7 @@ q(function()
{G.P_BLINDS, is_banned_from_pastry, pastries.banned_other}, {G.P_BLINDS, is_banned_from_pastry, pastries.banned_other},
{G.P_CENTERS, is_center_banned_from_pastry, pastries.banned_cards}, {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_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_heart", crimson.banned_other},
{G.P_BLINDS, is_showdown_except "bl_final_leaf", verdant.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}, {G.P_BLINDS, is_showdown_except "bl_final_vessel", violet.banned_other},