mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Potential fix for triggers being placed too early on the stack. If this doesn't work, we'll have to move the passPriority lower in the magicStack.push()
This commit is contained in:
@@ -167,9 +167,12 @@ public class PhaseHandler extends MyObservable implements java.io.Serializable {
|
|||||||
* a {@link forge.game.player.Player} object.
|
* a {@link forge.game.player.Player} object.
|
||||||
*/
|
*/
|
||||||
public final void setPriority(final Player p) {
|
public final void setPriority(final Player p) {
|
||||||
|
/*
|
||||||
|
2012-07-20 Potential fix for bad trigger stack placements
|
||||||
if (AllZone.getStack() != null) {
|
if (AllZone.getStack() != null) {
|
||||||
AllZone.getStack().chooseOrderOfSimultaneousStackEntryAll();
|
AllZone.getStack().chooseOrderOfSimultaneousStackEntryAll();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
this.pFirstPriority = p;
|
this.pFirstPriority = p;
|
||||||
this.pPlayerPriority = p;
|
this.pPlayerPriority = p;
|
||||||
|
|||||||
Reference in New Issue
Block a user