1
0
Fork 0
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:
LevelX2 2019-12-14 12:30:07 +01:00
parent f9fa669773
commit cdd7dce764

View file

@ -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);