mirror of
https://github.com/correl/mage.git
synced 2025-04-12 01:01:04 -09:00
[mage] fix for ExileFromGraveCost
This commit is contained in:
parent
e1210e15b5
commit
20efee44fb
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class ExileFromGraveCost extends CostImpl<ExileFromGraveCost> {
|
|||
if (targets.choose(Outcome.Exile, controllerId, game)) {
|
||||
Player player = game.getPlayer(controllerId);
|
||||
for (UUID targetId: targets.get(0).getTargets()) {
|
||||
Card card = player.getHand().get(targetId, game);
|
||||
Card card = player.getGraveyard().get(targetId, game);
|
||||
if (card == null) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue