mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Merge fix
This commit is contained in:
parent
fe28c9c7d9
commit
92517cc371
1 changed files with 1 additions and 1 deletions
|
@ -439,12 +439,12 @@ public abstract class AbilityImpl implements Ability {
|
||||||
// A player can't apply two alternative methods of casting or two alternative costs to a single spell.
|
// A player can't apply two alternative methods of casting or two alternative costs to a single spell.
|
||||||
switch (((SpellAbility) this).getSpellAbilityCastMode()) {
|
switch (((SpellAbility) this).getSpellAbilityCastMode()) {
|
||||||
case NORMAL:
|
case NORMAL:
|
||||||
case MADNESS:
|
|
||||||
default:
|
default:
|
||||||
canUseAlternativeCost = true;
|
canUseAlternativeCost = true;
|
||||||
canUseAdditionalCost = true;
|
canUseAdditionalCost = true;
|
||||||
break;
|
break;
|
||||||
case FLASHBACK:
|
case FLASHBACK:
|
||||||
|
case MADNESS:
|
||||||
// from Snapcaster Mage:
|
// from Snapcaster Mage:
|
||||||
// If you cast a spell from a graveyard using its flashback ability, you can’t pay other alternative costs
|
// If you cast a spell from a graveyard using its flashback ability, you can’t pay other alternative costs
|
||||||
// (such as that of Foil). (2018-12-07)
|
// (such as that of Foil). (2018-12-07)
|
||||||
|
|
Loading…
Reference in a new issue