mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 22:42:03 -08: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…
Add table
Add a link
Reference in a new issue