From 46452b252ee31c04af8b47d1296742f97bd809dd Mon Sep 17 00:00:00 2001 From: xenohedron <12538125+xenohedron@users.noreply.github.com> Date: Tue, 18 Nov 2025 21:14:39 -0500 Subject: [PATCH] verify fix --- Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index 0e907ba999f..6ead3fde9f4 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -2195,7 +2195,7 @@ public class VerifyCardDataTest { // Note that the check includes reminder text, so any keyword ability with reminder text always included in the card text doesn't need to be added // FIN added equip abilities with flavor words, allow for those. There are also cards that affect equip costs or equip abilities, exclude those // Technically Enchant should be in this list, but that's added to the SpellAbility in XMage - Pattern targetKeywordRegexPattern = Pattern.compile("^((.*— )?equip(?! cost| abilit)|bestow|partner with|modular|backup)\\b", Pattern.MULTILINE); + Pattern targetKeywordRegexPattern = Pattern.compile("^((.*— )?equip(?! cost| abilit)|bestow|partner with|modular|backup|earthbend)\\b", Pattern.MULTILINE); // Checks for targeted reflexive or delayed triggered abilities, ones that only can trigger as a result of another ability // and thus have their "when" located after a previous statement (detected by a period or comma followed by a space) instead of the start.