mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
parent
3a0324557a
commit
e11d07457e
1 changed files with 10 additions and 1 deletions
|
@ -28,6 +28,7 @@ import mage.game.Game;
|
|||
import mage.game.GameState;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.ZoneChangeEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.Spirit32Token;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCardInExile;
|
||||
|
@ -100,7 +101,15 @@ enum QuintoriusLoremasterPredicate implements ObjectSourcePlayerPredicate<Card>
|
|||
.of(game)
|
||||
.map(Game::getState)
|
||||
.map(GameState::getExile)
|
||||
.map(exile -> exile.getExileZone(CardUtil.getExileZoneId(game, input.getSource())))
|
||||
.map(exile -> {
|
||||
Ability source = input.getSource();
|
||||
Permanent quintorius = source.getSourcePermanentOrLKI(game);
|
||||
if(quintorius == null) {
|
||||
return null;
|
||||
}
|
||||
UUID exileZoneId = CardUtil.getExileZoneId(game, quintorius.getId(), quintorius.getZoneChangeCounter(game));
|
||||
return exile.getExileZone(exileZoneId);
|
||||
})
|
||||
.filter(Objects::nonNull)
|
||||
.map(exile -> exile.contains(input.getObject().getId()))
|
||||
.orElse(false);
|
||||
|
|
Loading…
Reference in a new issue