- When zooming in on an Aftermath split card in desktop Forge, rotate it the other way compared to a standard split to correctly visualize the graveyard half (right split).

This commit is contained in:
Agetian
2017-04-22 13:46:36 +00:00
parent e6f280c1e1
commit a7e53348e9

View File

@@ -226,6 +226,9 @@ public enum CardZoomer {
if (thisCard == null) { if (thisCard == null) {
return 0; return 0;
} }
if (thisCard.getCard().isSplitCard() && thisCard.getCard().getText().contains("Aftermath")) {
return 270; // rotate Aftermath splits the other way to correctly show the right split (graveyard) half
}
return thisCard.getCard().isSplitCard() || thisCard.getType().isPlane() || thisCard.getType().isPhenomenon() ? 90 : 0; return thisCard.getCard().isSplitCard() || thisCard.getType().isPlane() || thisCard.getType().isPhenomenon() ? 90 : 0;
} }