Fix leftsplit manacost display

This commit is contained in:
Anthony Calosa
2020-10-24 06:32:25 +08:00
parent 02181593cc
commit 152c7dd564
2 changed files with 2 additions and 1 deletions

View File

@@ -462,7 +462,7 @@ public class CardPanel extends SkinnedPanel implements CardContainer, IDisposabl
PaperCard pc = StaticData.instance().getCommonCards().getCard(card.getName());
int ofs = pc != null && Card.getCardForUi(pc).hasKeyword(Keyword.AFTERMATH) ? -12 : 12;
drawManaCost(g, card.getCurrentState().getManaCost(), ofs);
drawManaCost(g, card.getLeftSplitState().getManaCost(), ofs);
drawManaCost(g, card.getAlternateState().getManaCost(), -ofs);
}
}