[refactoring][minor] Replaced all tabs with four spaces.

This commit is contained in:
North 2012-06-19 23:50:20 +03:00
parent e646e4768d
commit 239a4fb100
2891 changed files with 79411 additions and 79411 deletions

View file

@ -40,28 +40,28 @@ import mage.game.command.Emblem;
*/
public class GetEmblemEffect extends OneShotEffect<GetEmblemEffect> {
private Emblem emblem;
private Emblem emblem;
public GetEmblemEffect(Emblem emblem) {
super(Outcome.Benefit);
this.emblem = emblem;
this.staticText = "You get an emblem with \"" + emblem.getAbilities().getRules(null) + "\"";
}
public GetEmblemEffect(Emblem emblem) {
super(Outcome.Benefit);
this.emblem = emblem;
this.staticText = "You get an emblem with \"" + emblem.getAbilities().getRules(null) + "\"";
}
public GetEmblemEffect(final GetEmblemEffect effect) {
super(effect);
this.emblem = effect.emblem;
}
public GetEmblemEffect(final GetEmblemEffect effect) {
super(effect);
this.emblem = effect.emblem;
}
@Override
public GetEmblemEffect copy() {
return new GetEmblemEffect(this);
}
@Override
public GetEmblemEffect copy() {
return new GetEmblemEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
@Override
public boolean apply(Game game, Ability source) {
game.addEmblem(emblem, source);
return true;
}
return true;
}
}