mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
AI: fixed that computer can't play commanders (#7955);
This commit is contained in:
parent
d0ee17d661
commit
62d6675be6
4 changed files with 40 additions and 8 deletions
|
|
@ -104,9 +104,10 @@ public class Commander implements CommandObject {
|
|||
}
|
||||
|
||||
private Commander(final Commander commander) {
|
||||
this.sourceObject = commander.sourceObject;
|
||||
this.sourceObject = commander.sourceObject.copy();
|
||||
this.copy = commander.copy;
|
||||
this.copyFrom = (commander.copyFrom != null ? commander.copyFrom.copy() : null);
|
||||
this.abilities.addAll(commander.abilities.copy());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue