mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
make some fields final
This commit is contained in:
parent
f4d9c98df7
commit
3653e09ce4
8 changed files with 10 additions and 10 deletions
|
|
@ -17,8 +17,8 @@ public class Constructed extends DeckValidator {
|
|||
|
||||
private static final Logger logger = Logger.getLogger(DeckValidator.class);
|
||||
|
||||
protected static List<String> anyNumberCardsAllowed = new ArrayList<>(Arrays.asList("Relentless Rats", "Shadowborn Apostle", "Rat Colony"));
|
||||
protected static List<String> basicLandNames = new ArrayList<>(
|
||||
protected static final List<String> anyNumberCardsAllowed = new ArrayList<>(Arrays.asList("Relentless Rats", "Shadowborn Apostle", "Rat Colony"));
|
||||
protected static final List<String> basicLandNames = new ArrayList<>(
|
||||
Arrays.asList("Forest", "Island", "Mountain", "Swamp", "Plains", "Wastes", "Snow-Covered Forest",
|
||||
"Snow-Covered Island", "Snow-Covered Mountain", "Snow-Covered Swamp", "Snow-Covered Plains"));
|
||||
protected List<String> banned = new ArrayList<>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue