mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix M15 colors for GW (was WG), GU (was UG), RW (was WR)
This commit is contained in:
parent
af48b17451
commit
b26cd21f02
1 changed files with 1 additions and 1 deletions
|
@ -1127,7 +1127,7 @@ public class ModernCardRenderer extends CardRenderer {
|
|||
protected static Paint getBorderPaint(ObjectColor colors, Collection<CardType> types, int width) {
|
||||
if (colors.isMulticolored()) {
|
||||
if (colors.getColorCount() == 2) {
|
||||
List<ObjectColor> twoColors = colors.getColors();
|
||||
List<ObjectColor> twoColors = colors.getTwoColorsInOrder();
|
||||
|
||||
// Two-color frames look better if we use a whiter white
|
||||
// than the normal white frame color for them, as the normal
|
||||
|
|
Loading…
Reference in a new issue