mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Flood of Tears - fixed not working ability (#5877);
This commit is contained in:
parent
e195bddf09
commit
251bd41fe9
1 changed files with 2 additions and 2 deletions
|
@ -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()))
|
||||
|
|
Loading…
Reference in a new issue