mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Fixed a bug that automatically pass priority after putting an activated ability to stack passed to next phase if the ability was not put on the stack (e.g. Suspend).
This commit is contained in:
parent
a88e336b55
commit
c7edbbac5b
1 changed files with 3 additions and 1 deletions
|
@ -1136,7 +1136,9 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
justActivatedType = null;
|
||||
if (result) {
|
||||
if (isHuman() && (ability.getAbilityType().equals(AbilityType.SPELL) || ability.getAbilityType().equals(AbilityType.ACTIVATED))) {
|
||||
setJustActivatedType(ability.getAbilityType());
|
||||
if (ability.isUsesStack()) { // if the ability does not use the stack (e.g. Suspend) auto pass would go to next phase unintended
|
||||
setJustActivatedType(ability.getAbilityType());
|
||||
}
|
||||
}
|
||||
game.getPlayers().resetPassed();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue