From d7e123bbe6b08f2149a2367dc56da2987b1a9140 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Fri, 10 Jan 2020 20:10:39 +0400 Subject: [PATCH] * Aether Gust - fixed that AI targets own objects first (#6159); --- Mage.Sets/src/mage/cards/a/AetherGust.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AetherGust.java b/Mage.Sets/src/mage/cards/a/AetherGust.java index 65154445b42..dbff727bf7a 100644 --- a/Mage.Sets/src/mage/cards/a/AetherGust.java +++ b/Mage.Sets/src/mage/cards/a/AetherGust.java @@ -56,7 +56,7 @@ public final class AetherGust extends CardImpl { class AetherGustEffect extends OneShotEffect { AetherGustEffect() { - super(Outcome.Benefit); + super(Outcome.Removal); staticText = "Choose target spell or permanent that's red or green. " + "Its owner puts it on the top or bottom of their library."; } @@ -76,7 +76,7 @@ class AetherGustEffect extends OneShotEffect { if (player == null) { return false; } - if (player.chooseUse(outcome, "Put the targeted object on the top or bottom of your library?", + if (player.chooseUse(Outcome.Detriment, "Put the targeted object on the top or bottom of your library?", "", "Top", "Bottom", source, game)) { return new PutOnLibraryTargetEffect(true).apply(game, source); }