Fix to CounterTargetEffect

This commit is contained in:
jmharmon 2019-12-13 20:43:16 -08:00 committed by GitHub
parent 073ee1419b
commit 2d4f8b6a02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ public final class MemoryDrain extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{U}{U}");
// Counter target spell. Scry 2.
this.getSpellAbility().addEffect(new CounterSourceEffect());
this.getSpellAbility().addEffect(new CounterTargetEffect());
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addEffect(new ScryEffect(2));
}