From 18d48523218eae9357710be5af40a9c4cc339559 Mon Sep 17 00:00:00 2001 From: Achilles Date: Wed, 7 Feb 2018 21:46:52 -0600 Subject: [PATCH] - Fixed Tempt with Reflections --- Mage.Sets/src/mage/cards/t/TemptWithReflections.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TemptWithReflections.java b/Mage.Sets/src/mage/cards/t/TemptWithReflections.java index 0c75bfe7816..f10b0688c86 100644 --- a/Mage.Sets/src/mage/cards/t/TemptWithReflections.java +++ b/Mage.Sets/src/mage/cards/t/TemptWithReflections.java @@ -51,7 +51,7 @@ import mage.target.common.TargetControlledCreaturePermanent; public class TemptWithReflections extends CardImpl { public TemptWithReflections(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{U}"); + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{U}"); // Tempting offer - Choose target creature you control. Create a token that's a copy of that creature. Each opponent may create a token that's a copy of that creature. For each opponent who does, create a token that's a copy of that creature. this.getSpellAbility().addEffect(new TemptWithReflectionsEffect()); @@ -114,9 +114,8 @@ class TemptWithReflectionsEffect extends OneShotEffect { effect = new CreateTokenCopyTargetEffect(playerId); effect.setTargetPointer(getTargetPointer()); effect.apply(game, source); - } - if (!playersSaidYes.isEmpty()) { + // create a token for the source controller as well effect = new CreateTokenCopyTargetEffect(); effect.setTargetPointer(getTargetPointer()); effect.apply(game, source);