Mutate first step

This commit is contained in:
Lyu Zong-Hong
2021-02-06 13:40:54 +09:00
parent 7d3703bc1e
commit c845d0566f
15 changed files with 233 additions and 6 deletions

View File

@@ -536,6 +536,20 @@ public class CardDetailUtil {
area.append("Encoded: ").append(card.getEncodedCards());
}
// Merge
if (card.getMergedCards() != null) {
if (area.length() != 0) {
area.append("\n");
}
area.append("Merged: ").append(card.getMergedCards());
}
if (card.getMergedTo() != null) {
if (area.length() != 0) {
area.append("\n");
}
area.append("Merged to: ").append(card.getMergedTo());
}
// must block
if (card.getMustBlockCards() != null) {
if (area.length() != 0) {