From cdf7bb64a78c446335314ef6979129d19cb05153 Mon Sep 17 00:00:00 2001 From: Emik Date: Mon, 23 Feb 2026 17:06:58 +0100 Subject: [PATCH] Only count unconditional centers --- src/challenge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/challenge.lua b/src/challenge.lua index a8c1e40..6259f4d 100644 --- a/src/challenge.lua +++ b/src/challenge.lua @@ -30,7 +30,7 @@ end 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 c.mod and c.set == v.set + return c.mod and not c.in_pool and c.set == v.set end) end