mirror of
https://github.com/correl/mage.git
synced 2025-04-01 19:07:57 -09:00
fixed Virtus's Maneuver allowing players to get back noncreature cards
This commit is contained in:
parent
d8a3a408df
commit
36aad539f1
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import mage.constants.Outcome;
|
|||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.filter.predicate.other.OwnerIdPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -76,7 +77,7 @@ class VirtussManeuverEffect extends OneShotEffect {
|
|||
if (player == null) {
|
||||
continue;
|
||||
}
|
||||
FilterCard filter = new FilterCard("card in your graveyard");
|
||||
FilterCard filter = new FilterCreatureCard("creature card in your graveyard");
|
||||
filter.add(new OwnerIdPredicate(player.getId()));
|
||||
TargetCardInGraveyard target = new TargetCardInGraveyard(filter);
|
||||
getBackMap.put(player.getId(), null);
|
||||
|
|
Loading…
Add table
Reference in a new issue