mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
* Fixed that snow lands can be added in draft and sealed modes (#5831);
This commit is contained in:
parent
6d518c62e6
commit
77e92d9186
3 changed files with 35 additions and 3 deletions
|
|
@ -176,6 +176,13 @@ public enum CardRepository {
|
|||
return names;
|
||||
}
|
||||
|
||||
public Boolean haveSnowLands(String setCode) {
|
||||
return setCode.equals("CSP")
|
||||
|| setCode.equals("MH1")
|
||||
|| setCode.equals("ME2")
|
||||
|| setCode.equals("ICE");
|
||||
}
|
||||
|
||||
public Set<String> getNonbasicLandNames() {
|
||||
Set<String> names = new TreeSet<>();
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue