mirror of
https://github.com/correl/mage.git
synced 2024-12-27 03:00:13 +00:00
fixed Heliod, Sun-Crowned filter
This commit is contained in:
parent
53296446a8
commit
a8075c734a
1 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@ import mage.constants.SubType;
|
|||
import mage.constants.SuperType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
|
@ -33,7 +34,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public final class HeliodSunCrowned extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent("creature or enchantment you control");
|
||||
private static final FilterPermanent filter = new FilterControlledPermanent("creature or enchantment you control");
|
||||
private static final FilterPermanent filter2 = new FilterCreaturePermanent("another target creature");
|
||||
|
||||
static {
|
||||
|
|
Loading…
Reference in a new issue