- CheckStyle.

This commit is contained in:
Chris
2012-01-20 14:04:41 +00:00
parent 1705ff5fa6
commit 0ca3b136cc
2 changed files with 6 additions and 6 deletions

View File

@@ -1986,11 +1986,11 @@ public class AbilityFactory {
s = sa;
} else if (defined.equals("Targeted")) {
final SpellAbility parent = AbilityFactory.findParentsTargetedSpellAbility(sa);
if(parent != null) {
if(parent.getTarget() != null) {
if (parent != null) {
if (parent.getTarget() != null) {
sas.addAll(parent.getTarget().getTargetSAs());
}
}
}
} else if (defined.startsWith("Triggered")) {
final SpellAbility root = sa.getRootSpellAbility();

View File

@@ -2560,9 +2560,9 @@ public class CardFactoryCreatures {
card.addComesIntoPlayCommand(comesIntoPlay);
} // *************** END ************ END **************************
// *************** START *********** START **************************
// *************** START *********** START **************************
else if (cardName.equals("Zedruu the Greathearted")) {
final Target player = new Target(card, "Select target opponent", "Opponent".split(","));