- Removed duplicate StackDescription of SubAbilities from AF ChangeZone.

This commit is contained in:
Sloth
2012-12-04 18:49:46 +00:00
parent 3a6d078032
commit 7eb6a80d0e

View File

@@ -140,11 +140,6 @@ public class ChangeZoneEffect extends SpellEffect {
sb.append(" to your ").append(destination);
}
final AbilitySub abSub = sa.getSubAbility();
if (abSub != null) {
sb.append(abSub.getStackDescription());
}
return sb.toString();
}
@@ -266,11 +261,6 @@ public class ChangeZoneEffect extends SpellEffect {
sb.append(" into").append(pronoun).append("owner's graveyard.");
}
final AbilitySub abSub = sa.getSubAbility();
if (abSub != null) {
sb.append(abSub.getStackDescription());
}
return sb.toString();
}