mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Fixed game error on Nicol Bolas, God-Pharaoh usage
This commit is contained in:
parent
ae5bc90915
commit
ec7befa511
1 changed files with 1 additions and 0 deletions
|
@ -123,6 +123,7 @@ class NicolBolasGodPharaohPlusOneEffect extends OneShotEffect {
|
|||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||
Player opponent = game.getPlayer(opponentId);
|
||||
if (opponent == null || !cardsToExile.containsKey(opponentId)) {
|
||||
continue;
|
||||
}
|
||||
cardsOpponentsChoseToExile.addAll(cardsToExile.get(opponentId));
|
||||
opponent.moveCards(cardsOpponentsChoseToExile, Zone.EXILED, source, game);
|
||||
|
|
Loading…
Reference in a new issue