fixed Fumble not selecting a target (fixes #5024)

This commit is contained in:
Evan Kranzler 2018-06-10 08:39:56 -04:00
parent fdb970c644
commit cf97a82c33

View file

@ -1,4 +1,3 @@
package mage.cards.f; package mage.cards.f;
import java.util.ArrayList; import java.util.ArrayList;
@ -34,6 +33,7 @@ public final class Fumble extends CardImpl {
// Return target creature to its owner's hand. Gain control of all Auras and Equipment that were attached to it, then attach them to another creature. // Return target creature to its owner's hand. Gain control of all Auras and Equipment that were attached to it, then attach them to another creature.
this.getSpellAbility().addEffect(new FumbleEffect()); this.getSpellAbility().addEffect(new FumbleEffect());
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
} }
public Fumble(final Fumble card) { public Fumble(final Fumble card) {