mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Necropotence will no longer show the names of the cards exiled face down.
This commit is contained in:
@@ -2415,7 +2415,11 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
for (Object o : rememberedObjects) {
|
||||
if (o instanceof Card) {
|
||||
Card c = (Card) o;
|
||||
sb.append(c.getName());
|
||||
if (c.isFaceDown()) {
|
||||
sb.append("Face Down ");
|
||||
} else {
|
||||
sb.append(c.getName());
|
||||
}
|
||||
sb.append("(");
|
||||
sb.append(c.getUniqueNumber());
|
||||
sb.append(")");
|
||||
|
||||
Reference in New Issue
Block a user