diff --git a/Mage.Sets/src/mage/cards/d/DeviousCoverUp.java b/Mage.Sets/src/mage/cards/d/DeviousCoverUp.java index 6df5646a40a..4bbb21daeb7 100644 --- a/Mage.Sets/src/mage/cards/d/DeviousCoverUp.java +++ b/Mage.Sets/src/mage/cards/d/DeviousCoverUp.java @@ -33,7 +33,7 @@ public final class DeviousCoverUp extends CardImpl { // You may shuffle up to four target cards from your graveyard into your library. this.getSpellAbility().addEffect(new DeviousCoverUpEffect().setTargetPointer(new SecondTargetPointer())); - this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 5)); + this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(0, 4)); } public DeviousCoverUp(final DeviousCoverUp card) { @@ -50,7 +50,7 @@ class DeviousCoverUpEffect extends OneShotEffect { public DeviousCoverUpEffect() { super(Outcome.Benefit); - this.staticText = "You may shuffle up to five target cards " + this.staticText = "You may shuffle up to four target cards " + "from your graveyard into your library."; } diff --git a/Mage.Sets/src/mage/cards/r/RalsDispersal.java b/Mage.Sets/src/mage/cards/r/RalsDispersal.java index 49bf949594a..4747d592aa0 100644 --- a/Mage.Sets/src/mage/cards/r/RalsDispersal.java +++ b/Mage.Sets/src/mage/cards/r/RalsDispersal.java @@ -28,7 +28,7 @@ public final class RalsDispersal extends CardImpl { // Return target creature to its owner's hand. You may search you library and/or graveyard for a card named Ral, Caller of Storms, reveal it, and put it in to your hand. If you search your library this way, shuffle it. this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); this.getSpellAbility().addEffect( - new SearchLibraryGraveyardPutInHandEffect(filter, false, false) + new SearchLibraryGraveyardPutInHandEffect(filter, false, true) ); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); }