mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Only face down split cards should have an alternate state to show via the "transform arrows".
This commit is contained in:
@@ -685,7 +685,7 @@ public class CardView extends GameEntityView {
|
||||
}
|
||||
currentState.getView().updateKeywords(c, currentState); //update keywords even if state doesn't change
|
||||
|
||||
CardState alternateState = isSplitCard ? c.getState(CardStateName.RightSplit) : c.getAlternateState();
|
||||
CardState alternateState = isSplitCard && isFaceDown() ? c.getState(CardStateName.RightSplit) : c.getAlternateState();
|
||||
|
||||
if (isSplitCard && isFaceDown()) {
|
||||
// face-down (e.g. manifested) split cards should show the original face on their flip side
|
||||
|
||||
Reference in New Issue
Block a user