mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Psychic Intrusion - Fixed a bug that the opponent was asked to exile a card fromgraveyard instead of the controller.
This commit is contained in:
parent
daff690af3
commit
74b204f8f9
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class PsychicIntrusionExileEffect extends OneShotEffect<PsychicIntrusionExileEff
|
||||||
int cardsHand = opponent.getHand().count(filter, game);
|
int cardsHand = opponent.getHand().count(filter, game);
|
||||||
boolean fromHand = false;
|
boolean fromHand = false;
|
||||||
if (cardsGraveyard > 0 && cardsHand > 0) {
|
if (cardsGraveyard > 0 && cardsHand > 0) {
|
||||||
if (opponent.chooseUse(Outcome.Detriment, "Exile card from opponents Hand?", game)) {
|
if (you.chooseUse(Outcome.Detriment, "Exile card from opponents Hand?", game)) {
|
||||||
fromHand = true;
|
fromHand = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue