mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
Fix Assimilation Aegis
* Token copies were not able to select a creature from exile to copy
This commit is contained in:
parent
b32fd1b9d7
commit
3885e72aad
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ class AssimilationAegisEffect extends OneShotEffect {
|
|||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
UUID exileId = CardUtil.getExileZoneId(game, source);
|
||||
UUID exileId = CardUtil.getCardExileZoneId(game, source);
|
||||
TargetCard target = new TargetCardInExile(StaticFilters.FILTER_CARD_CREATURE, exileId);
|
||||
target.withNotTarget(true);
|
||||
if (!target.choose(Outcome.Benefit, player.getId(), source.getId(), source, game)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue