diff --git a/src/main/java/forge/card/cost/CostExileAndPay.java b/src/main/java/forge/card/cost/CostExileAndPay.java index b3120f6e1cd..5f405b8f288 100644 --- a/src/main/java/forge/card/cost/CostExileAndPay.java +++ b/src/main/java/forge/card/cost/CostExileAndPay.java @@ -112,7 +112,16 @@ public class CostExileAndPay extends CostPartWithList { } } - Cost selectedCost = GuiChoose.oneOrNone("Choose a cost", options); + Cost selectedCost; + if(options.size() > 1) + { + selectedCost = GuiChoose.oneOrNone("Choose a cost", options); + } + else + { + selectedCost = options.get(0); + } + if(selectedCost == null) { return false;