allow placement below top X cards (#2666)

Close #2666
This commit is contained in:
Zach H 2017-04-27 20:32:24 -04:00 committed by Gavin Bisesi
parent 7c1a18da5e
commit 12c9e4b81a
4 changed files with 56 additions and 4 deletions

View file

@ -277,8 +277,10 @@ void MessageLogWidget::doMoveCard(LogMoveCard &attributes)
finalStr = tr("%1 puts %2%3 on bottom of their library.");
else if (attributes.newX == 0)
finalStr = tr("%1 puts %2%3 on top of their library.");
else
finalStr = tr("%1 puts %2%3 into their library at position %4.");
else {
attributes.newX++;
finalStr = tr("%1 puts %2%3 into their library %4 cards from the top.");
}
} else if (targetName == "sb")
finalStr = tr("%1 moves %2%3 to sideboard.");
else if (targetName == "stack") {