mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
Removing Commander from the list of formats shown in the deck item view as it only checks against the banlist, not other deckbuilding requirements.
(cherry picked from commit a6f3371)
This commit is contained in:
@@ -509,6 +509,10 @@ public class GameFormat implements Comparable<GameFormat> {
|
||||
//exclude Digital formats from lists for now
|
||||
continue;
|
||||
}
|
||||
if (gf.getFormatSubType().equals(FormatSubType.Commander)){
|
||||
//exclude Commander format as other deck checks are not performed here
|
||||
continue;
|
||||
}
|
||||
if (gf.getFormatType().equals(FormatType.Historic) && coveredTypes.contains(gf.getFormatSubType())
|
||||
&& !exhaustive){
|
||||
//exclude duplicate formats - only keep first of e.g. Standard historical
|
||||
|
||||
Reference in New Issue
Block a user