mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Minor formatting.
This commit is contained in:
parent
17253fa099
commit
f340ed29d0
2 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ class GainProtectionFromColorSourceEffect extends GainAbilitySourceEffect {
|
||||||
protectionFilter.add(new ColorPredicate(choice.getColor()));
|
protectionFilter.add(new ColorPredicate(choice.getColor()));
|
||||||
protectionFilter.setMessage(choice.getChoice());
|
protectionFilter.setMessage(choice.getChoice());
|
||||||
((ProtectionAbility)ability).setFilter(protectionFilter);
|
((ProtectionAbility)ability).setFilter(protectionFilter);
|
||||||
creature.addAbility(ability, game);
|
creature.addAbility(ability, source.getSourceId(), game);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
||||||
*/
|
*/
|
||||||
public class CorpseHauler extends CardImpl<CorpseHauler> {
|
public class CorpseHauler extends CardImpl<CorpseHauler> {
|
||||||
|
|
||||||
private static final FilterCard filter = new FilterCard("target another creature card from your graveyard");
|
private static final FilterCard filter = new FilterCard("another target creature card from your graveyard");
|
||||||
static {
|
static {
|
||||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||||
filter.add(new AnotherCardPredicate());
|
filter.add(new AnotherCardPredicate());
|
||||||
|
|
Loading…
Reference in a new issue