mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
Added some more block formats for deck validation. Sort list.
This commit is contained in:
parent
4787e79f30
commit
8ccca932c1
6 changed files with 191 additions and 6 deletions
|
|
@ -29,7 +29,7 @@
|
|||
package mage.server.game;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import mage.cards.decks.*;
|
||||
|
|
@ -44,7 +44,7 @@ public class DeckValidatorFactory {
|
|||
private final static DeckValidatorFactory INSTANCE = new DeckValidatorFactory();
|
||||
private final static Logger logger = Logger.getLogger(DeckValidatorFactory.class);
|
||||
|
||||
private Map<String, Class> deckTypes = new HashMap<String, Class>();
|
||||
private Map<String, Class> deckTypes = new LinkedHashMap<String, Class>();
|
||||
|
||||
public static DeckValidatorFactory getInstance() {
|
||||
return INSTANCE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue