mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
all player will add their triggers to stack when ANY player has priority
This commit is contained in:
@@ -969,7 +969,11 @@ public class PhaseHandler implements java.io.Serializable {
|
||||
if (game.isGameOver())
|
||||
return; // state-based effects check could lead to game over
|
||||
|
||||
game.getStack().chooseOrderOfSimultaneousStackEntry(pPlayerPriority);
|
||||
Player whoAddsToStack = pPlayerPriority;
|
||||
do {
|
||||
game.getStack().chooseOrderOfSimultaneousStackEntry(whoAddsToStack);
|
||||
whoAddsToStack = game.getNextPlayerAfter(whoAddsToStack);
|
||||
} while( whoAddsToStack != null && whoAddsToStack != pPlayerPriority);
|
||||
|
||||
chosenSa = pPlayerPriority.getController().chooseSpellAbilityToPlay();
|
||||
if( null == chosenSa )
|
||||
|
||||
Reference in New Issue
Block a user