fix Learn effect to not get lesson cards from exile (#11374)

This commit is contained in:
ssk97 2023-11-01 18:39:43 -07:00 committed by GitHub
parent 822ca69d4b
commit 38dd582adc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ public class LearnEffect extends OneShotEffect {
))) {
return false;
}
return new WishEffect(filter, true).apply(game, source)
return new WishEffect(filter).apply(game, source)
|| new DoIfCostPaid(
new DrawCardSourceControllerEffect(1), new DiscardCardCost()
).apply(game, source);