forked from External/mage
Fix Echoes of Eternity (#12419)
This commit is contained in:
parent
668808a7d5
commit
ebc58723f6
1 changed files with 2 additions and 1 deletions
|
|
@ -83,7 +83,8 @@ class EchoesOfEternityEffect extends ReplacementEffectImpl {
|
|||
return false;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(event.getSourceId());
|
||||
if (permanent != null && permanent.getColor(game).isColorless()) {
|
||||
if (permanent != null && permanent.getColor(game).isColorless()
|
||||
&& !permanent.getId().equals(source.getSourceId())) {
|
||||
return true;
|
||||
}
|
||||
Spell spell = game.getSpell(event.getSourceId());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue