mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
[KHM] fixed verify error
This commit is contained in:
parent
1faec71a9e
commit
f6c70d5d4a
2 changed files with 5 additions and 4 deletions
|
@ -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"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,8 @@ public enum CardRepository {
|
|||
"MH1",
|
||||
"SLD",
|
||||
"ME2",
|
||||
"ICE"
|
||||
"ICE",
|
||||
"KHM"
|
||||
));
|
||||
|
||||
CardRepository() {
|
||||
|
|
Loading…
Reference in a new issue