mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-14 09:48:02 +00:00
fix aftermath for art mode
This commit is contained in:
committed by
leriomaggio
parent
cbe1544707
commit
44951fa371
@@ -331,7 +331,7 @@ public class CardImageRenderer {
|
||||
if (alt == null)
|
||||
alt = card.getAlternateState().getCard();
|
||||
CardView cv = altState && isFaceDown ? alt : card;
|
||||
boolean isAftermath = altState ? cv.getAlternateState().hasHasAftermath(): cv.getCurrentState().hasHasAftermath();
|
||||
boolean isAftermath = altState ? cv.getAlternateState().hasHasAftermath(): cv.getRightSplitState().hasHasAftermath();
|
||||
if (!isAftermath) {
|
||||
CardEdition ed = FModel.getMagicDb().getEditions().get(cv.getCurrentState().getSetCode());
|
||||
boolean isOldFrame = ed != null && !ed.isModern();
|
||||
|
||||
Reference in New Issue
Block a user