mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
minor cleanup adjustment
This commit is contained in:
parent
a3099a4b39
commit
e626d8be5d
1 changed files with 2 additions and 6 deletions
|
|
@ -1,6 +1,5 @@
|
|||
package mage.abilities.common;
|
||||
|
||||
import mage.abilities.TriggeredAbility;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.constants.TargetController;
|
||||
|
|
@ -21,10 +20,7 @@ public class PlayCardTriggeredAbility extends TriggeredAbilityImpl {
|
|||
* @param effect
|
||||
*/
|
||||
public PlayCardTriggeredAbility(TargetController targetController, Zone zone, Effect effect) {
|
||||
super(zone, effect);
|
||||
this.targetController = targetController;
|
||||
|
||||
constructTriggerPhrase();
|
||||
this(targetController, zone, effect, false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -98,7 +94,7 @@ public class PlayCardTriggeredAbility extends TriggeredAbilityImpl {
|
|||
}
|
||||
|
||||
@Override
|
||||
public TriggeredAbility copy() {
|
||||
public PlayCardTriggeredAbility copy() {
|
||||
return new PlayCardTriggeredAbility(this);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue