From c222e707bfea9d9fc6dae6d98fb4fafd3837c29e Mon Sep 17 00:00:00 2001 From: xenohedron Date: Thu, 12 Sep 2024 20:43:33 -0400 Subject: [PATCH] correction on Living Phone --- Mage.Sets/src/mage/cards/l/LivingPhone.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/l/LivingPhone.java b/Mage.Sets/src/mage/cards/l/LivingPhone.java index 925803a3416..4e08426c505 100644 --- a/Mage.Sets/src/mage/cards/l/LivingPhone.java +++ b/Mage.Sets/src/mage/cards/l/LivingPhone.java @@ -35,7 +35,7 @@ public final class LivingPhone extends CardImpl { // When Living Phone dies, look at the top five cards of your library. You may reveal a creature card with power 2 or less from among them and put it into your hand. Put the rest on the bottom of your library in a random order. this.addAbility(new DiesSourceTriggeredAbility(new LookLibraryAndPickControllerEffect( - 4, 1, filter, PutCards.HAND, PutCards.BOTTOM_RANDOM + 5, 1, filter, PutCards.HAND, PutCards.BOTTOM_RANDOM ))); }