mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +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)
|
if (alt == null)
|
||||||
alt = card.getAlternateState().getCard();
|
alt = card.getAlternateState().getCard();
|
||||||
CardView cv = altState && isFaceDown ? alt : card;
|
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) {
|
if (!isAftermath) {
|
||||||
CardEdition ed = FModel.getMagicDb().getEditions().get(cv.getCurrentState().getSetCode());
|
CardEdition ed = FModel.getMagicDb().getEditions().get(cv.getCurrentState().getSetCode());
|
||||||
boolean isOldFrame = ed != null && !ed.isModern();
|
boolean isOldFrame = ed != null && !ed.isModern();
|
||||||
|
|||||||
Reference in New Issue
Block a user