mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Cavern of Souls - Fixed that the "spell can't be countered" effect from the mana did not work when the cavern was no longer on the battlefield while the spell was cast.
This commit is contained in:
parent
94eedd3348
commit
b60e224098
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ public class CavernOfSouls extends CardImpl {
|
||||||
// {tap}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.
|
// {tap}: Add one mana of any color to your mana pool. Spend this mana only to cast a creature spell of the chosen type, and that spell can't be countered.
|
||||||
this.addAbility(new ConditionalAnyColorManaAbility(1, new CavernOfSoulsManaBuilder()));
|
this.addAbility(new ConditionalAnyColorManaAbility(1, new CavernOfSoulsManaBuilder()));
|
||||||
this.addWatcher(new CavernOfSoulsWatcher());
|
this.addWatcher(new CavernOfSoulsWatcher());
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CavernOfSoulsCantCounterEffect()));
|
this.addAbility(new SimpleStaticAbility(Zone.ALL, new CavernOfSoulsCantCounterEffect()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public CavernOfSouls(final CavernOfSouls card) {
|
public CavernOfSouls(final CavernOfSouls card) {
|
||||||
|
@ -211,7 +211,7 @@ class CavernOfSoulsWatcher extends Watcher {
|
||||||
class CavernOfSoulsCantCounterEffect extends ContinuousRuleModifiyingEffectImpl {
|
class CavernOfSoulsCantCounterEffect extends ContinuousRuleModifiyingEffectImpl {
|
||||||
|
|
||||||
public CavernOfSoulsCantCounterEffect() {
|
public CavernOfSoulsCantCounterEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
super(Duration.EndOfGame, Outcome.Benefit);
|
||||||
staticText = null;
|
staticText = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue