mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
* Aether Gust - fixed that AI targets own objects first (#6159);
This commit is contained in:
parent
fe2e9389f2
commit
d7e123bbe6
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue