Formatting Bartel Runeaxe

Cleanup text formatting in code file.
This commit is contained in:
JRHerlehy 2015-02-20 04:10:10 -08:00
parent 688c25f34b
commit 2f3a7c56d5

View file

@ -112,12 +112,11 @@ class BartelRuneaxeEffect extends ContinuousRuleModifiyingEffectImpl {
Card targetCard = game.getCard(event.getTargetId());
StackObject stackObject = (StackObject) game.getStack().getStackObject(event.getSourceId());
if (targetCard != null && stackObject != null && targetCard.getId().equals(source.getSourceId())) {
if (stackObject.getSubtype().contains("Aura"))
{
return true;
if (stackObject.getSubtype().contains("Aura")) {
return true;
}
}
}
return false;
}
}
}