add face down to the string if the card is face down (#4130)
This commit is contained in:
parent
9cf7621102
commit
752ba7d905
1 changed files with 5 additions and 1 deletions
|
@ -316,7 +316,11 @@ void MessageLogWidget::logMoveCard(Player *player,
|
|||
bool usesNewX = false;
|
||||
if (targetZoneName == tableConstant()) {
|
||||
soundEngine->playSound("play_card");
|
||||
if (card->getFaceDown()) {
|
||||
finalStr = tr("%1 puts %2 into play%3 face down.");
|
||||
} else {
|
||||
finalStr = tr("%1 puts %2 into play%3.");
|
||||
}
|
||||
} else if (targetZoneName == graveyardConstant()) {
|
||||
finalStr = tr("%1 puts %2%3 into their graveyard.");
|
||||
} else if (targetZoneName == exileConstant()) {
|
||||
|
|
Loading…
Reference in a new issue