* Read the Tides - Fixed number of maximal possible targets from 1 to 2 (#6646).

This commit is contained in:
LevelX2 2020-06-29 15:16:51 +02:00
parent 34dbf7b67e
commit accbf7a3a7

View file

@ -24,7 +24,7 @@ public final class ReadTheTides extends CardImpl {
// Return up to two target creatures to their owners' hands.
Mode mode = new Mode(new ReturnToHandTargetEffect());
mode.addTarget(new TargetCreaturePermanent(0, 1));
mode.addTarget(new TargetCreaturePermanent(0, 2));
this.getSpellAbility().addMode(mode);
}