- Also specify the ID for cards that are currently face up (e.g. when revealing them).

This commit is contained in:
Agetian
2014-12-11 17:20:03 +00:00
parent e57881f1d9
commit 798c6c26ec

View File

@@ -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() + ")";
} }
} }
} }