Fix so phyrexian mana symbols display properly in generated card images

This commit is contained in:
drdev
2014-07-29 12:56:44 +00:00
parent 5f5447d3e1
commit 51b1e5ee07
5 changed files with 20 additions and 20 deletions

View File

@@ -56,11 +56,11 @@ public enum ManaCostShard implements Comparable<ManaCostShard> {
COLORLESS(ManaAtom.COLORLESS, "1"),
/* Phyrexian */
PW(ManaAtom.WHITE | ManaAtom.OR_2_LIFE, "W/P", "PW"),
PU(ManaAtom.BLUE | ManaAtom.OR_2_LIFE, "U/P", "PU"),
PB(ManaAtom.BLACK | ManaAtom.OR_2_LIFE, "B/P", "PB"),
PR(ManaAtom.RED | ManaAtom.OR_2_LIFE, "R/P", "PR"),
PG(ManaAtom.GREEN | ManaAtom.OR_2_LIFE, "G/P", "PG"),
PW(ManaAtom.WHITE | ManaAtom.OR_2_LIFE, "P/W", "PW"),
PU(ManaAtom.BLUE | ManaAtom.OR_2_LIFE, "P/U", "PU"),
PB(ManaAtom.BLACK | ManaAtom.OR_2_LIFE, "P/B", "PB"),
PR(ManaAtom.RED | ManaAtom.OR_2_LIFE, "P/R", "PR"),
PG(ManaAtom.GREEN | ManaAtom.OR_2_LIFE, "P/G", "PG"),
X(ManaAtom.IS_X, "X");