mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00: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();
|
||||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||
Player opponent = game.getPlayer(opponentId);
|
||||
if (opponent == null) {
|
||||
if (opponent == null || !cardsToExile.containsKey(opponentId)) {
|
||||
continue;
|
||||
}
|
||||
cardsOpponentsChoseToExile.addAll(cardsToExile.get(opponentId));
|
||||
|
|
Loading…
Reference in a new issue