mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* Bolas's Citadel - fixed that opponent can use Bolas's play ability for own cards (#6741);
This commit is contained in:
parent
d18093daf2
commit
d1ccb621a1
3 changed files with 39 additions and 10 deletions
|
|
@ -8,7 +8,6 @@ package mage.abilities.effects.common;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.constants.Duration;
|
||||
|
|
@ -114,7 +113,6 @@ public class AmplifyEffect extends ReplacementEffectImpl {
|
|||
// You can’t reveal this card or any other cards that are entering the battlefield at the same time as this card.
|
||||
filter.add(Predicates.not(new CardIdPredicate(source.getSourceId())));
|
||||
for (Permanent enteringPermanent : game.getPermanentsEntering().values()) {
|
||||
Card card = game.getCard(enteringPermanent.getId());
|
||||
filter.add(Predicates.not(new CardIdPredicate(enteringPermanent.getId())));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue