game: face down abilities - added workable card hint to game logs after face up activate (now you can see face up card from a logs);

This commit is contained in:
Oleg Agafonov 2024-02-18 23:23:31 +04:00
parent ad8e7daf97
commit e26445774b
2 changed files with 15 additions and 3 deletions

View file

@ -11,6 +11,8 @@ public enum EmptyNames {
FACE_DOWN_CREATURE(""), // "Face down creature"
FACE_DOWN_TOKEN(""); // "Face down token"
public static final String EMPTY_NAME_IN_LOGS = "face down object";
private final String cardName;
EmptyNames(String cardName) {