mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
game: fixed wrong commander colors with large color identity (#12429)
This commit is contained in:
parent
a071593d47
commit
892ccddd35
1 changed files with 1 additions and 1 deletions
|
|
@ -872,7 +872,7 @@ public abstract class AbstractCommander extends Constructed {
|
||||||
int thisMaxPower = 0;
|
int thisMaxPower = 0;
|
||||||
String cn = commander.getName().toLowerCase(Locale.ENGLISH);
|
String cn = commander.getName().toLowerCase(Locale.ENGLISH);
|
||||||
if (color == null) {
|
if (color == null) {
|
||||||
color = commander.getColor(null);
|
color = commander.getColor(null).copy();
|
||||||
} else {
|
} else {
|
||||||
color = color.union(commander.getColor(null));
|
color = color.union(commander.getColor(null));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue