- Added generated serials to the new Input functions in Cost_Payment

This commit is contained in:
jendave
2011-08-06 09:05:36 +00:00
parent 8ef29957b4
commit d69f07cbdb

View File

@@ -625,6 +625,8 @@ public class Cost_Payment {
public static Input exileThis(final SpellAbility spell, final Cost_Payment payment) { public static Input exileThis(final SpellAbility spell, final Cost_Payment payment) {
Input target = new Input() { Input target = new Input() {
private static final long serialVersionUID = 678668673002725001L;
@Override @Override
public void showMessage() { public void showMessage() {
Card card = spell.getSourceCard(); Card card = spell.getSourceCard();
@@ -655,6 +657,8 @@ public class Cost_Payment {
public static Input exileType(final SpellAbility spell, final String type, final Cost_Payment payment){ public static Input exileType(final SpellAbility spell, final String type, final Cost_Payment payment){
Input target = new Input() { Input target = new Input() {
private static final long serialVersionUID = 1403915758082824694L;
private CardList typeList; private CardList typeList;
private int nExiles = 0; private int nExiles = 0;
private int nNeeded = payment.getCost().getExileAmount(); private int nNeeded = payment.getCost().getExileAmount();