mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-10 04:16:43 -07:00
log face down
This commit is contained in:
parent
8e067dd564
commit
ab1fce75f2
1 changed files with 10 additions and 2 deletions
|
|
@ -314,9 +314,17 @@ void MessageLogWidget::logMoveCard(Player *player,
|
||||||
finalStr = tr("%1 puts %2 into play%3.");
|
finalStr = tr("%1 puts %2 into play%3.");
|
||||||
}
|
}
|
||||||
} else if (targetZoneName == GRAVE_ZONE_NAME) {
|
} else if (targetZoneName == GRAVE_ZONE_NAME) {
|
||||||
finalStr = tr("%1 puts %2%3 into their graveyard.");
|
if (card->getFaceDown()) {
|
||||||
|
finalStr = tr("%1 puts %2%3 into their graveyard face down.");
|
||||||
|
} else {
|
||||||
|
finalStr = tr("%1 puts %2%3 into their graveyard.");
|
||||||
|
}
|
||||||
} else if (targetZoneName == EXILE_ZONE_NAME) {
|
} else if (targetZoneName == EXILE_ZONE_NAME) {
|
||||||
finalStr = tr("%1 exiles %2%3.");
|
if (card->getFaceDown()) {
|
||||||
|
finalStr = tr("%1 exiles %2%3 face down.");
|
||||||
|
} else {
|
||||||
|
finalStr = tr("%1 exiles %2%3.");
|
||||||
|
}
|
||||||
} else if (targetZoneName == HAND_ZONE_NAME) {
|
} else if (targetZoneName == HAND_ZONE_NAME) {
|
||||||
finalStr = tr("%1 moves %2%3 to their hand.");
|
finalStr = tr("%1 moves %2%3 to their hand.");
|
||||||
} else if (targetZoneName == DECK_ZONE_NAME) {
|
} else if (targetZoneName == DECK_ZONE_NAME) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue