mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed card affected by merge.
This commit is contained in:
parent
b478287a99
commit
994c3e907e
1 changed files with 4 additions and 2 deletions
|
@ -37,6 +37,8 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.filter.common.FilterCreaturePermanent;
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
|
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||||
|
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
|
@ -51,8 +53,8 @@ public class DiscipleOfBolas extends CardImpl<DiscipleOfBolas> {
|
||||||
final private static FilterCreaturePermanent filter = new FilterCreaturePermanent(" another creature");
|
final private static FilterCreaturePermanent filter = new FilterCreaturePermanent(" another creature");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.setAnother(true);
|
filter.add(new AnotherPredicate());
|
||||||
filter.setTargetController(Constants.TargetController.YOU);
|
filter.add(new ControllerPredicate(Constants.TargetController.YOU));
|
||||||
}
|
}
|
||||||
|
|
||||||
public DiscipleOfBolas(UUID ownerId) {
|
public DiscipleOfBolas(UUID ownerId) {
|
||||||
|
|
Loading…
Reference in a new issue