- Fixed the split cards not showing the Fuse ability in the card detail panel.

This commit is contained in:
Agetian
2015-05-30 05:02:31 +00:00
parent 473921ecac
commit 0993837aa2

View File

@@ -575,7 +575,7 @@ public class CardView extends GameEntityView {
if (isSplitCard() && getZone() != ZoneType.Stack) { if (isSplitCard() && getZone() != ZoneType.Stack) {
//ensure ability text for right half of split card is included unless spell is on stack //ensure ability text for right half of split card is included unless spell is on stack
sb.append("\r\n\r\n").append("(").append(getAlternateState().getName()).append(") ").append(getAlternateState().getAbilityText()); sb.append("\r\n\r\n").append("(").append(getAlternateState().getName()).append(") ").append(getAlternateState().getOracleText());
} }
String nonAbilityText = get(TrackableProperty.NonAbilityText); String nonAbilityText = get(TrackableProperty.NonAbilityText);