diff --git a/src/main/java/forge/GameActionUtil.java b/src/main/java/forge/GameActionUtil.java index 0a71de18ebc..8b3a336d748 100644 --- a/src/main/java/forge/GameActionUtil.java +++ b/src/main/java/forge/GameActionUtil.java @@ -380,6 +380,14 @@ public final class GameActionUtil { } return; } + if (manaCost.equals("0")) { + if (showYesNoDialog(hostCard, "Do you want to pay 0?")) { + paid.execute(); + } else { + unpaid.execute(); + } + return; + } // temporarily disable the Resolve flag, so the user can payMana for the // resolving Ability final boolean bResolving = AllZone.getStack().getResolving();