mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Chandra Pyromaster - Fixed that the exiled card from second ability could e.g. not be cast with overload. Fixes #486. Added tests.
This commit is contained in:
parent
8140893f0d
commit
e893999657
3 changed files with 90 additions and 34 deletions
|
|
@ -882,13 +882,13 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
result = playManaAbility((ManaAbility)ability.copy(), game);
|
||||
}
|
||||
else if (ability instanceof FlashbackAbility){
|
||||
result = playAbility((ActivatedAbility)ability.copy(), game);
|
||||
result = playAbility(ability.copy(), game);
|
||||
}
|
||||
else if (ability instanceof SpellAbility) {
|
||||
result = cast((SpellAbility)ability, game, false);
|
||||
}
|
||||
else {
|
||||
result = playAbility((ActivatedAbility)ability.copy(), game);
|
||||
result = playAbility(ability.copy(), game);
|
||||
}
|
||||
|
||||
//if player has taken an action then reset all player passed flags
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue