wrap long lines

master
melvin 2012-08-26 23:05:27 +08:00
parent b51e320774
commit 6be253a2bc
1 changed files with 3 additions and 2 deletions

View File

@ -15,12 +15,13 @@ public class Spell_Pierce {
public static final MagicSpellCardEvent SPELL_PIERCE=new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack.getCard(),
cardOnStack.getController(),
MagicTargetChoice.NEG_TARGET_NONCREATURE_SPELL,
new Object[]{cardOnStack},this,"Counter target noncreature spell$ unless its controller pays {2}.");
new Object[]{cardOnStack},
this,
"Counter target noncreature spell$ unless its controller pays {2}.");
}
@Override