forked from External/mage
[PH17] Implement Inzerva, Master of Insights (#11774)
* Remove superfluous code from fateseal effect
This commit is contained in:
parent
86154a7317
commit
e5759bbd9e
10 changed files with 182 additions and 8 deletions
|
|
@ -985,8 +985,11 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
}
|
||||
} else {
|
||||
// user defined order
|
||||
UUID cardOwner = cards.getRandom(game).getOwnerId();
|
||||
TargetCard target = new TargetCard(Zone.ALL,
|
||||
new FilterCard("card ORDER to put on the BOTTOM of your library (last one chosen will be bottommost)"));
|
||||
new FilterCard("card ORDER to put on the BOTTOM of " +
|
||||
(cardOwner.equals(playerId) ? "your" : game.getPlayer(cardOwner).getName() + "'s") +
|
||||
" library (last one chosen will be bottommost)"));
|
||||
target.setRequired(true);
|
||||
while (cards.size() > 1 && this.canRespond()
|
||||
&& this.choose(Outcome.Neutral, cards, target, source, game)) {
|
||||
|
|
@ -1078,8 +1081,11 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
}
|
||||
} else {
|
||||
// user defined order
|
||||
UUID cardOwner = cards.getRandom(game).getOwnerId();
|
||||
TargetCard target = new TargetCard(Zone.ALL,
|
||||
new FilterCard("card ORDER to put on the TOP of your library (last one chosen will be topmost)"));
|
||||
new FilterCard("card ORDER to put on the TOP of " +
|
||||
(cardOwner.equals(playerId) ? "your" : game.getPlayer(cardOwner).getName() + "'s") +
|
||||
" library (last one chosen will be topmost)"));
|
||||
target.setRequired(true);
|
||||
while (cards.size() > 1
|
||||
&& this.canRespond()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue