mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed #467 : changing attacker color to red
This commit is contained in:
parent
eb6dc10faa
commit
5f040b218a
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti
|
||||||
}
|
}
|
||||||
|
|
||||||
if (canAttack) {
|
if (canAttack) {
|
||||||
g2d.setColor(new Color(0, 0, 150, 180));
|
g2d.setColor(new Color(255, 0, 0, 230));
|
||||||
g2d.fillRoundRect(cardXOffset + 1, cardYOffset + 1, cardWidth - 2, cardHeight - 2, cornerSize, cornerSize);
|
g2d.fillRoundRect(cardXOffset + 1, cardYOffset + 1, cardWidth - 2, cardHeight - 2, cornerSize, cornerSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue