mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
another small change to verify
This commit is contained in:
parent
f574e6fc1d
commit
eb3e8d5ae9
1 changed files with 2 additions and 1 deletions
|
@ -1654,7 +1654,8 @@ public class VerifyCardDataTest {
|
|||
}
|
||||
// mana ability fix
|
||||
for (String s : refText.split("[\\$\\\n]")) {
|
||||
if (!(s.startsWith("{T}: Add {") || s.startsWith("({T}: Add {")) || !s.contains("} or {")) {
|
||||
if (!(s.startsWith("{T}: Add {") || s.startsWith("({T}: Add {"))
|
||||
|| !(s.contains("} or {") || s.contains("}, or {"))) {
|
||||
continue;
|
||||
}
|
||||
String newStr = "";
|
||||
|
|
Loading…
Reference in a new issue