forked from External/mage
[DGM] fixed Legion's Initiative not returning exiled creatures (fixes #8761)
This commit is contained in:
parent
7f4e691685
commit
a5e21b8c9e
2 changed files with 7 additions and 3 deletions
|
|
@ -597,7 +597,11 @@ public final class CardUtil {
|
|||
}
|
||||
|
||||
public static UUID getExileZoneId(Game game, Ability source) {
|
||||
return getExileZoneId(game, source.getSourceId(), source.getSourceObjectZoneChangeCounter());
|
||||
return getExileZoneId(game, source, 0);
|
||||
}
|
||||
|
||||
public static UUID getExileZoneId(Game game, Ability source, int offset) {
|
||||
return getExileZoneId(game, source.getSourceId(), source.getSourceObjectZoneChangeCounter() + offset);
|
||||
}
|
||||
|
||||
public static UUID getExileZoneId(Game game, UUID objectId, int zoneChangeCounter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue