mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Fixed small text bug of Reshape.
This commit is contained in:
parent
865631eba7
commit
bc9fc67b58
1 changed files with 2 additions and 2 deletions
|
|
@ -97,7 +97,7 @@ class ReshapeSearchEffect extends OneShotEffect<ReshapeSearchEffect> {
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
FilterCard filter = new FilterCard("green creature card with converted mana cost X or less");
|
FilterCard filter = new FilterCard("artifact card with converted mana cost X or less");
|
||||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||||
//Set the mana cost one higher to 'emulate' a less than or equal to comparison.
|
//Set the mana cost one higher to 'emulate' a less than or equal to comparison.
|
||||||
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.LessThan, source.getManaCostsToPay().getX() + 1));
|
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.LessThan, source.getManaCostsToPay().getX() + 1));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue