mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Also specify the ID for cards that are currently face up (e.g. when revealing them).
This commit is contained in:
@@ -679,7 +679,7 @@ public class CardView extends GameEntityView {
|
|||||||
if (this.getCurrentState().getState() == CardStateName.FaceDown) {
|
if (this.getCurrentState().getState() == CardStateName.FaceDown) {
|
||||||
return "Face-down card (H" + getHiddenId() + ")";
|
return "Face-down card (H" + getHiddenId() + ")";
|
||||||
} else {
|
} else {
|
||||||
return getAlternateState().getName();
|
return getAlternateState().getName() + " (" + getId() + ")";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user