From 1cbe322da83e96485a813ef7cc51920eb963848c Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 28 Oct 2013 23:58:10 +0100 Subject: [PATCH] * Plow Through Reito - Fixed bug that the boost effect did not work. --- Mage.Sets/src/mage/sets/saviorsofkamigawa/PlowThroughReito.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/saviorsofkamigawa/PlowThroughReito.java b/Mage.Sets/src/mage/sets/saviorsofkamigawa/PlowThroughReito.java index f4cd80bab8..fd4a676dd8 100644 --- a/Mage.Sets/src/mage/sets/saviorsofkamigawa/PlowThroughReito.java +++ b/Mage.Sets/src/mage/sets/saviorsofkamigawa/PlowThroughReito.java @@ -53,7 +53,7 @@ public class PlowThroughReito extends CardImpl { // Sweep - Return any number of Plains you control to their owner's hand. Target creature gets +1/+1 until end of turn for each Plains returned this way. this.getSpellAbility().addEffect(new SweepEffect("Plains")); - DynamicValue sweepValue = new SweepNumber("Plains", false); + DynamicValue sweepValue = new SweepNumber("Plains", true); this.getSpellAbility().addEffect(new BoostTargetEffect(sweepValue, sweepValue, Duration.EndOfTurn)); this.getSpellAbility().addTarget(new TargetCreaturePermanent(true)); }