From 8b815eba166775e5176dc194974ece03e467ce2a Mon Sep 17 00:00:00 2001 From: Maxmtg Date: Fri, 5 Apr 2013 10:29:11 +0000 Subject: [PATCH] and now a correct one! --- src/main/java/forge/card/cost/CostPartMana.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/forge/card/cost/CostPartMana.java b/src/main/java/forge/card/cost/CostPartMana.java index ce94e3565a5..14c74e1b5b0 100644 --- a/src/main/java/forge/card/cost/CostPartMana.java +++ b/src/main/java/forge/card/cost/CostPartMana.java @@ -140,8 +140,8 @@ public class CostPartMana extends CostPart { if(!inpPayment.isPaid()) return false; } - if (this.getAmountOfX() > 0 && !xWasBilled) { - if( !ability.isAnnouncing("X") ) { + if (this.getAmountOfX() > 0) { + if( !ability.isAnnouncing("X") && !xWasBilled) { source.setXManaCostPaid(0); InputPayment inpPayment = new InputPayManaX(ability, this.getAmountOfX(), this.canXbe0()); FThreads.setInputAndWait(inpPayment);