mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
fixed a test failure
This commit is contained in:
parent
8d6ce30626
commit
77d792bbaf
3 changed files with 4 additions and 4 deletions
|
|
@ -37,9 +37,9 @@ public class CardsInControllerGraveyardCondition implements Condition {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return CardUtil.numberToText(value, "one") + " or more "
|
||||
return "there are " + CardUtil.numberToText(value, "one") + " or more "
|
||||
+ (filter == null ? "cards" : filter.getMessage())
|
||||
+ " are in your graveyard";
|
||||
+ " in your graveyard";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue