diff --git a/Mage.Sets/src/mage/cards/p/PsychicFrog.java b/Mage.Sets/src/mage/cards/p/PsychicFrog.java index 9c020c12f65..26aad092681 100644 --- a/Mage.Sets/src/mage/cards/p/PsychicFrog.java +++ b/Mage.Sets/src/mage/cards/p/PsychicFrog.java @@ -44,7 +44,7 @@ public final class PsychicFrog extends CardImpl { // Exile three cards from your graveyard: Psychic Frog gains flying until end of turn. this.addAbility(new SimpleActivatedAbility( new GainAbilitySourceEffect(FlyingAbility.getInstance(), Duration.EndOfTurn), - new ExileFromGraveCost(new TargetCardInYourGraveyard(3)) + new ExileFromGraveCost(new TargetCardInYourGraveyard(3)).withSourceExileZone(false) )); }