Merge pull request #2591 from spjspj/master

Slight fix - SidarKondoOfJamuraa
This commit is contained in:
spjspj 2016-11-13 23:44:32 +11:00 committed by GitHub
commit 12f0462300

View file

@ -54,10 +54,10 @@ import mage.game.permanent.Permanent;
*/
public class SidarKondoOfJamuraa extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures with power 2 or greater");
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures with power 2 or less");
static {
filter.add(new PowerPredicate(Filter.ComparisonType.GreaterThan, 1));
filter.add(new PowerPredicate(Filter.ComparisonType.LessThan, 3));
}
public SidarKondoOfJamuraa(UUID ownerId, CardSetInfo setInfo) {