Only count unconditional centers

This commit is contained in:
Emik 2026-02-23 17:06:58 +01:00
parent 8f8a2402dc
commit cdf7bb64a7
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF

View file

@ -30,7 +30,7 @@ end
local function is_vanilla(v) local function is_vanilla(v)
return v.set and not v.mod and f(G.P_CENTERS):concat(G.P_CARDS, G.P_TAGS):any(function(c) return v.set and not v.mod and f(G.P_CENTERS):concat(G.P_CARDS, G.P_TAGS):any(function(c)
return c.mod and c.set == v.set return c.mod and not c.in_pool and c.set == v.set
end) end)
end end