From c79aea399b1b74c131d57da3e56c3842f0cb779a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 23 Sep 2018 01:15:26 +0200 Subject: [PATCH] * Piston-Fist Cylops - Fixed that it was never able to attack. --- Mage.Sets/src/mage/cards/p/PistonFistCyclops.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/PistonFistCyclops.java b/Mage.Sets/src/mage/cards/p/PistonFistCyclops.java index 2aa0419091..e362ad9416 100644 --- a/Mage.Sets/src/mage/cards/p/PistonFistCyclops.java +++ b/Mage.Sets/src/mage/cards/p/PistonFistCyclops.java @@ -6,7 +6,7 @@ import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.SimpleStaticAbility; import mage.abilities.condition.Condition; -import mage.abilities.decorator.ConditionalContinuousEffect; +import mage.abilities.decorator.ConditionalAsThoughEffect; import mage.abilities.effects.common.combat.CanAttackAsThoughItDidntHaveDefenderSourceEffect; import mage.constants.SubType; import mage.abilities.keyword.DefenderAbility; @@ -38,14 +38,14 @@ public final class PistonFistCyclops extends CardImpl { // As long as you've cast an instant or sorcery spell this turn, Piston-Fist Cyclops can attack as though it didn't have defender. this.addAbility(new SimpleStaticAbility( Zone.BATTLEFIELD, - new ConditionalContinuousEffect( + new ConditionalAsThoughEffect( new CanAttackAsThoughItDidntHaveDefenderSourceEffect( Duration.WhileOnBattlefield - ), PistonFistCyclopsCondition.instance, - "As long as you've cast an instant or sorcery spell this turn, " - + "{this} can attack as though it didn't have defender." - ) - ), new SpellsCastWatcher()); + ), PistonFistCyclopsCondition.instance) + .setText("As long as you've cast an instant or sorcery spell this turn, " + + "{this} can attack as though it didn't have defender") + ), + new SpellsCastWatcher()); } public PistonFistCyclops(final PistonFistCyclops card) {