[KHM] fixed verify error

This commit is contained in:
Evan Kranzler 2021-01-07 22:02:26 -05:00
parent 1faec71a9e
commit f6c70d5d4a
2 changed files with 5 additions and 4 deletions

View file

@ -856,9 +856,9 @@ public class VerifyCardDataTest {
}
}
if (needSnow != haveSnow) {
errorsList.add("error, found wrong snow lands info in set " + set.getCode() + ": "
+ (haveSnow ? "set have snow card" : "set haven't snow card")
+ ", but xmage think that it " + (needSnow ? "have" : "haven't"));
errorsList.add("error, found incorrect snow land info in set " + set.getCode() + ": "
+ (haveSnow ? "set has snow cards" : "set doesn't have snow card")
+ ", but xmage thinks that it " + (needSnow ? "does" : "doesn't"));
}
}

View file

@ -46,7 +46,8 @@ public enum CardRepository {
"MH1",
"SLD",
"ME2",
"ICE"
"ICE",
"KHM"
));
CardRepository() {