mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Fix for flickering DL Silumgar with Brago not releasing control of PWs/creatures
This commit is contained in:
parent
7b79de8e40
commit
a96b501c95
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ public class BragoKingEternal extends CardImpl {
|
||||||
// When Brago, King Eternal deals combat damage to a player, exile any number of target nonland permanents you control, then return those cards to the battlefield under their owner's control.
|
// When Brago, King Eternal deals combat damage to a player, exile any number of target nonland permanents you control, then return those cards to the battlefield under their owner's control.
|
||||||
Effect effect = new ExileTargetEffect(this.getId(), this.getName(), Zone.BATTLEFIELD);
|
Effect effect = new ExileTargetEffect(this.getId(), this.getName(), Zone.BATTLEFIELD);
|
||||||
effect.setText("exile any number of target nonland permanents you control");
|
effect.setText("exile any number of target nonland permanents you control");
|
||||||
|
effect.setApplyEffectsAfter();
|
||||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(effect, false);
|
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(effect, false);
|
||||||
FilterControlledPermanent filterControlledNonlandPermanent = new FilterControlledPermanent();
|
FilterControlledPermanent filterControlledNonlandPermanent = new FilterControlledPermanent();
|
||||||
filterControlledNonlandPermanent.add(Predicates.not(new CardTypePredicate(CardType.LAND)));
|
filterControlledNonlandPermanent.add(Predicates.not(new CardTypePredicate(CardType.LAND)));
|
||||||
|
|
Loading…
Reference in a new issue