Fixed small bug of Infinite Reflection.

This commit is contained in:
LevelX2 2013-04-03 19:11:27 +02:00
parent 8f6af3b412
commit 33f44893af

View file

@ -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());
}
}