Fixed Essence of the Wild's handling of Enters The Battlefield replacement effect.

This commit is contained in:
LevelX2 2013-03-22 21:34:41 +01:00
parent c34377526f
commit 27c96d7ea9
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ public class EssenceOfTheWild extends CardImpl<EssenceOfTheWild> {
class EssenceOfTheWildEffect extends ReplacementEffectImpl<EssenceOfTheWildEffect> { class EssenceOfTheWildEffect extends ReplacementEffectImpl<EssenceOfTheWildEffect> {
public EssenceOfTheWildEffect() { public EssenceOfTheWildEffect() {
super(Duration.WhileOnBattlefield, Outcome.Copy); super(Duration.WhileOnBattlefield, Outcome.Copy, false);
staticText = "Creatures you control enter the battlefield as a copy of {this}"; staticText = "Creatures you control enter the battlefield as a copy of {this}";
} }

View file

@ -67,7 +67,7 @@ public class TorporOrb extends CardImpl<TorporOrb> {
class TorporOrbEffect extends ReplacementEffectImpl<TorporOrbEffect> { class TorporOrbEffect extends ReplacementEffectImpl<TorporOrbEffect> {
TorporOrbEffect() { TorporOrbEffect() {
super(Duration.WhileOnBattlefield, Outcome.Detriment); super(Duration.WhileOnBattlefield, Outcome.Detriment, false);
staticText = "Creatures entering the battlefield don't cause abilities to trigger"; staticText = "Creatures entering the battlefield don't cause abilities to trigger";
} }