mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 20:29:19 -08:00
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;
|
return false;
|
||||||
}
|
}
|
||||||
Permanent permanent = game.getPermanent(event.getSourceId());
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
Spell spell = game.getSpell(event.getSourceId());
|
Spell spell = game.getSpell(event.getSourceId());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue