mirror of
https://github.com/correl/mage.git
synced 2025-04-10 01:01:05 -09:00
Fixed a bug recently added to ExileSourceEffect.
This commit is contained in:
parent
7ea4cc6ed0
commit
89fe41379a
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class ExileSourceEffect extends OneShotEffect<ExileSourceEffect> {
|
||||||
// try to exile card -> is this correct in all cases? (LevelX2)
|
// try to exile card -> is this correct in all cases? (LevelX2)
|
||||||
Card card = game.getCard(source.getSourceId());
|
Card card = game.getCard(source.getSourceId());
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
return controller.moveCardToExileWithInfo(permanent, null, null, source.getSourceId(), game, null);
|
return controller.moveCardToExileWithInfo(card, null, null, source.getSourceId(), game, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue