mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
Some fixes and minor changes.
This commit is contained in:
parent
e3ca906b05
commit
1d9df4a3bd
5 changed files with 11 additions and 17 deletions
|
|
@ -41,22 +41,22 @@ import mage.target.targetpointer.FixedTarget;
|
|||
public class SacrificeControllerEffect extends SacrificeEffect {
|
||||
|
||||
|
||||
public SacrificeControllerEffect ( FilterPermanent filter, DynamicValue count, String preText ) {
|
||||
public SacrificeControllerEffect(FilterPermanent filter, DynamicValue count, String preText ) {
|
||||
super(filter, count, preText);
|
||||
}
|
||||
|
||||
public SacrificeControllerEffect ( FilterPermanent filter, int count, String preText ) {
|
||||
this(filter, new StaticValue(count), preText);
|
||||
}
|
||||
public SacrificeControllerEffect(FilterPermanent filter, int count, String preText ) {
|
||||
this(filter, new StaticValue(count), preText);
|
||||
}
|
||||
|
||||
public SacrificeControllerEffect (final SacrificeControllerEffect effect ) {
|
||||
public SacrificeControllerEffect(final SacrificeControllerEffect effect ) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
this.targetPointer = new FixedTarget(source.getControllerId());
|
||||
return super.apply(game, source);
|
||||
this.targetPointer = new FixedTarget(source.getControllerId());
|
||||
return super.apply(game, source);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -34,11 +34,6 @@ import mage.abilities.effects.Effect;
|
|||
import mage.cards.Card;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* 702.94. Overload
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue