mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Added a trackable property EncodedCards for Cipher.
- Added text information for encoded cards to the card detail box. - Fixed imports.
This commit is contained in:
@@ -557,6 +557,14 @@ public class CardDetailUtil {
|
||||
area.append("Haunting " + card.getHaunting());
|
||||
}
|
||||
|
||||
// Cipher
|
||||
if (card.getEncodedCards() != null) {
|
||||
if (area.length() != 0) {
|
||||
area.append("\n");
|
||||
}
|
||||
area.append("Encoded: " + card.getEncodedCards());
|
||||
}
|
||||
|
||||
// must block
|
||||
if (card.getMustBlockCards() != null) {
|
||||
if (area.length() != 0) {
|
||||
|
||||
Reference in New Issue
Block a user