diff --git a/Mage.Sets/src/mage/cards/p/ProteanRaider.java b/Mage.Sets/src/mage/cards/p/ProteanRaider.java
index c15f237d439..1949db295e4 100644
--- a/Mage.Sets/src/mage/cards/p/ProteanRaider.java
+++ b/Mage.Sets/src/mage/cards/p/ProteanRaider.java
@@ -28,12 +28,10 @@
package mage.cards.p;
import java.util.UUID;
-
import mage.MageInt;
import mage.abilities.Ability;
-import mage.abilities.common.EntersBattlefieldTriggeredAbility;
+import mage.abilities.common.EntersBattlefieldAbility;
import mage.abilities.condition.common.RaidCondition;
-import mage.abilities.decorator.ConditionalTriggeredAbility;
import mage.abilities.effects.common.CopyPermanentEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
@@ -55,10 +53,8 @@ public class ProteanRaider extends CardImpl {
this.toughness = new MageInt(2);
// Raid - If you attacked with a creature this turn, you may have Protean Raider enter the battlefield as a copy of any creature on the battlefield.
- Ability ability = new ConditionalTriggeredAbility(
- new EntersBattlefieldTriggeredAbility(new CopyPermanentEffect(), true),
- RaidCondition.instance,
- "Raid — If you attacked with a creature this turn, you may have {this} enter the battlefield as a copy of any creature on the battlefield.");
+ Ability ability = new EntersBattlefieldAbility(new CopyPermanentEffect(), true, RaidCondition.instance,
+ "Raid — If you attacked with a creature this turn, you may have {this} enter the battlefield as a copy of any creature on the battlefield.", "");
this.addAbility(ability, new PlayerAttackedWatcher());
}
@@ -70,4 +66,4 @@ public class ProteanRaider extends CardImpl {
public ProteanRaider copy() {
return new ProteanRaider(this);
}
-}
\ No newline at end of file
+}