mirror of
https://github.com/correl/mage.git
synced 2025-04-14 09:09:38 -09:00
Fixed select prompt text of Sisay, Weatherlight Captain.
This commit is contained in:
parent
f9fa669773
commit
cdd7dce764
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class SisayWeatherlightCaptainEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
int power = permanent.getPower().getValue();
|
||||
FilterCard filter = new FilterPermanentCard("permanent card with converted mana cost less than " + power);
|
||||
FilterCard filter = new FilterPermanentCard("legendary permanent card with converted mana cost less than " + power);
|
||||
filter.add(new SupertypePredicate(SuperType.LEGENDARY));
|
||||
filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, power));
|
||||
return new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter)).apply(game, source);
|
||||
|
|
Loading…
Add table
Reference in a new issue