mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- 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:
@@ -226,6 +226,9 @@ public enum CardZoomer {
|
||||
if (thisCard == null) {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user