mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
Fix Braids, Arisen Nightmare drawing cards for players who lost the game that turn
This commit is contained in:
parent
ffef3b25cd
commit
e2d2d1f08e
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ class BraidsArisenNightmareEffect extends OneShotEffect {
|
|||
if (!permanent.sacrifice(source, game)) {
|
||||
return false;
|
||||
}
|
||||
for (UUID opponentId : game.getOpponents(controller.getId())) {
|
||||
for (UUID opponentId : game.getOpponents(controller.getId(), true)) {
|
||||
Player opponent = game.getPlayer(opponentId);
|
||||
if (opponent == null) {
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue