mirror of
https://github.com/correl/mage.git
synced 2025-03-16 01:06:34 -09:00
* Yarok's Fenlurker - fixed rollback error with empty hand;
This commit is contained in:
parent
ebdba3c57e
commit
126c2f9b92
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class YaroksFenlurkerEffect extends OneShotEffect {
|
||||||
Cards cardsOpponentsChoseToExile = new CardsImpl();
|
Cards cardsOpponentsChoseToExile = new CardsImpl();
|
||||||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||||
Player opponent = game.getPlayer(opponentId);
|
Player opponent = game.getPlayer(opponentId);
|
||||||
if (opponent == null) {
|
if (opponent == null || !cardsToExile.containsKey(opponentId)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
cardsOpponentsChoseToExile.addAll(cardsToExile.get(opponentId));
|
cardsOpponentsChoseToExile.addAll(cardsToExile.get(opponentId));
|
||||||
|
|
Loading…
Add table
Reference in a new issue