mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
- A real fix for Watchers of the Dead.
This commit is contained in:
parent
b8e952cfb9
commit
237db497b6
1 changed files with 1 additions and 2 deletions
|
@ -100,8 +100,7 @@ class WatchersOfTheDeadEffect extends OneShotEffect {
|
|||
TargetCard target = new TargetCardInYourGraveyard(2, 2, new FilterCard());
|
||||
target.setNotTarget(true);
|
||||
Cards cardsInGraveyard = opponent.getGraveyard();
|
||||
|
||||
if (cardsInGraveyard.size() > 2) {
|
||||
if (cardsInGraveyard.size() > 1) {
|
||||
opponent.choose(outcome, cardsInGraveyard, target, game);
|
||||
for (Card cardInGraveyard : cardsInGraveyard.getCards(game)) {
|
||||
if (!target.getTargets().contains(cardInGraveyard.getId())) {
|
||||
|
|
Loading…
Reference in a new issue