Use getGameCost() instead of getCost()

master
Ada Joule 2018-11-26 15:12:21 +07:00 committed by Melvin Zhang
parent 5b64a02087
commit 2ff0e11de6
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class MagicJumpStartActivation extends MagicGraveyardCastActivation {
@Override
public Iterable<? extends MagicEvent> getCostEvent(final MagicCard source) {
return Arrays.asList(
new MagicPayManaCostEvent(source, source.getCost()),
new MagicPayManaCostEvent(source, source.getGameCost()),
new MagicDiscardEvent(source)
);
}