mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
...
This commit is contained in:
parent
44bbc23388
commit
aadfdfe193
1 changed files with 8 additions and 7 deletions
|
@ -70,6 +70,7 @@ import mage.player.ai.simulators.CombatSimulator;
|
|||
import mage.player.ai.simulators.CreatureSimulator;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.decks.Deck;
|
||||
import mage.choices.Choice;
|
||||
import mage.filter.common.FilterCreatureForAttack;
|
||||
import mage.filter.common.FilterCreatureForCombat;
|
||||
|
@ -99,15 +100,15 @@ import mage.util.TreeNode;
|
|||
*/
|
||||
public class ComputerPlayer extends PlayerImpl implements Player {
|
||||
|
||||
private final static Logger logger = Logging.getLogger(ComputerPlayer.class.getName());
|
||||
private final static transient Logger logger = Logging.getLogger(ComputerPlayer.class.getName());
|
||||
private boolean abort = false;
|
||||
private Map<Mana, Card> unplayable = new TreeMap<Mana, Card>();
|
||||
private List<Card> playableNonInstant = new ArrayList<Card>();
|
||||
private List<Card> playableInstant = new ArrayList<Card>();
|
||||
private List<ActivatedAbility> playableAbilities = new ArrayList<ActivatedAbility>();
|
||||
private transient Map<Mana, Card> unplayable = new TreeMap<Mana, Card>();
|
||||
private transient List<Card> playableNonInstant = new ArrayList<Card>();
|
||||
private transient List<Card> playableInstant = new ArrayList<Card>();
|
||||
private transient List<ActivatedAbility> playableAbilities = new ArrayList<ActivatedAbility>();
|
||||
|
||||
public ComputerPlayer(String name) {
|
||||
super(name);
|
||||
public ComputerPlayer(String name, Deck deck) {
|
||||
super(name, deck);
|
||||
human = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue