forked from External/mage
Fix Bandit's Talent
This commit is contained in:
parent
00770646f8
commit
50940d6b4b
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ class BanditsTalentDiscardEffect extends OneShotEffect {
|
|||
}
|
||||
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
||||
Player targetPlayer = game.getPlayer(playerId);
|
||||
if (targetPlayer == null || targetPlayer.getHand().isEmpty()) {
|
||||
if (targetPlayer == null || targetPlayer.getHand().isEmpty() || !controller.hasOpponent(playerId, game)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue