mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
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");
|
||||
finalStr = tr("%1 puts %2 into play%3.");
|
||||
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…
Add table
Add a link
Reference in a new issue