From 251bd41fe9e6614b0bfc67ea27c36d0f97639b9a Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Fri, 5 Jul 2019 15:48:41 +0400 Subject: [PATCH] * Flood of Tears - fixed not working ability (#5877); --- Mage.Sets/src/mage/cards/f/FloodOfTears.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FloodOfTears.java b/Mage.Sets/src/mage/cards/f/FloodOfTears.java index 875665d1db9..62c0f0c0197 100644 --- a/Mage.Sets/src/mage/cards/f/FloodOfTears.java +++ b/Mage.Sets/src/mage/cards/f/FloodOfTears.java @@ -45,7 +45,7 @@ public final class FloodOfTears extends CardImpl { class FloodOfTearsEffect extends OneShotEffect { FloodOfTearsEffect() { - super(Outcome.Benefit); + super(Outcome.Detriment); staticText = "Return all nonland permanents to their owners' hands. If you return four or more nontoken permanents you control this way," + " you may put a permanent card from your hand onto the battlefield."; } @@ -69,7 +69,7 @@ class FloodOfTearsEffect extends OneShotEffect { StaticFilters.FILTER_PERMANENT_NON_LAND, source.getControllerId(), source.getSourceId(), game ); Cards cards = new CardsImpl(); - if (cards.size() > 0) { + if (nonlands.size() > 0) { nonlands.stream().forEach(permanent -> cards.add(permanent)); boolean putIntoPlay = nonlands.stream() .filter(permanent -> permanent.isControlledBy(player.getId()))