forked from External/mage
Removed obsolete Zone parameter in CardsImpl constructors.
This commit is contained in:
parent
65f4b4c2d7
commit
3dcdd7f046
66 changed files with 174 additions and 217 deletions
|
|
@ -245,13 +245,13 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
this(UUID.randomUUID());
|
||||
this.name = name;
|
||||
this.range = range;
|
||||
hand = new CardsImpl(Zone.HAND);
|
||||
hand = new CardsImpl();
|
||||
graveyard = new Graveyard();
|
||||
abilities = new AbilitiesImpl<>();
|
||||
counters = new Counters();
|
||||
manaPool = new ManaPool(playerId);
|
||||
library = new Library(playerId);
|
||||
sideboard = new CardsImpl(Zone.OUTSIDE);
|
||||
sideboard = new CardsImpl();
|
||||
}
|
||||
|
||||
protected PlayerImpl(UUID id) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue