mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Fixed small bug of Infinite Reflection.
This commit is contained in:
parent
8f6af3b412
commit
33f44893af
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ class InfiniteReflectionEntersBattlefieldEffect extends ReplacementEffectImpl<In
|
|||
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
|
||||
if (sourcePermanent != null && toCopyToPermanent != null && sourcePermanent.getAttachedTo() != null) {
|
||||
Permanent toCopyFromPermanent = game.getPermanent(sourcePermanent.getAttachedTo());
|
||||
if (toCopyToPermanent != null) {
|
||||
if (toCopyFromPermanent != null) {
|
||||
game.copyPermanent(toCopyFromPermanent, toCopyToPermanent, source, new EmptyApplyToPermanent());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue