mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
* Fixed text generation for cards going from library to graveyard.
This commit is contained in:
parent
3a3f04d233
commit
5a17b9665e
1 changed files with 2 additions and 2 deletions
|
|
@ -64,14 +64,14 @@ public class PutLibraryIntoGraveTargetEffect extends OneShotEffect {
|
|||
} else {
|
||||
sb.append("that target");
|
||||
}
|
||||
|
||||
sb.append(" mills ");
|
||||
sb.append(" puts the top ");
|
||||
if (message.isEmpty()) {
|
||||
if (amount.toString().equals("1")) {
|
||||
sb.append("a card");
|
||||
} else {
|
||||
sb.append(CardUtil.numberToText(amount.toString())).append(" cards");
|
||||
}
|
||||
sb.append(" of their library into their graveyard");
|
||||
} else {
|
||||
sb.append(" X cards, where X is the number of ");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue