mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fixed Yarok's Fenlurker
This commit is contained in:
parent
6d21c9d3dc
commit
db9bdfdd5c
1 changed files with 2 additions and 1 deletions
|
@ -75,7 +75,8 @@ class YaroksFenlurkerEffect extends OneShotEffect {
|
|||
Map<UUID, Cards> cardsToExile = new HashMap<>();
|
||||
for (UUID opponentId : game.getOpponents(source.getControllerId())) {
|
||||
Player opponent = game.getPlayer(opponentId);
|
||||
if (opponent == null) {
|
||||
if (opponent == null
|
||||
|| opponent.getHand().isEmpty()) {
|
||||
continue;
|
||||
}
|
||||
int numberOfCardsToExile = Math.min(1, opponent.getHand().size());
|
||||
|
|
Loading…
Reference in a new issue