From 9fce4db025c7176eab5cc9ac83c4a8688d5eee2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Fri, 22 May 2026 20:34:30 +0200 Subject: [PATCH] [Oracle] Change basic lands exception to regex to deal with snow basics. Took 45 minutes --- oracle/src/oracleimporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oracle/src/oracleimporter.cpp b/oracle/src/oracleimporter.cpp index 05a3a7ca3..80b7382f1 100644 --- a/oracle/src/oracleimporter.cpp +++ b/oracle/src/oracleimporter.cpp @@ -473,8 +473,8 @@ FormatRulesNameMap OracleImporter::createDefaultMagicFormats() // Predefined common exceptions CardCondition superTypeIsBasic; superTypeIsBasic.field = "type"; - superTypeIsBasic.matchType = "contains"; - superTypeIsBasic.value = "Basic Land"; + superTypeIsBasic.matchType = "regex"; + superTypeIsBasic.value = "^Basic(?:\\s+Snow)?\\s+Land"; ExceptionRule basicLands; basicLands.conditions.append(superTypeIsBasic);