remove a little debug code... *sigh*

This commit is contained in:
slapshot5
2011-12-01 05:58:55 +00:00
parent f6096c8461
commit 367e945a2d

View File

@@ -2699,16 +2699,10 @@ public class Card extends GameEntity implements Comparable<Card> {
sb.append("Flashback"); sb.append("Flashback");
if (keyword.contains(" ")) { if (keyword.contains(" ")) {
final Cost fbCost = new Cost(keyword.substring(10), this.getName(), true); final Cost fbCost = new Cost(keyword.substring(10), this.getName(), true);
if (this.getName().equals("Acorn Harvest")) {
System.out.println("fbCost: |"+fbCost.toString()+"|");
}
if (!fbCost.isOnlyManaCost()) { if (!fbCost.isOnlyManaCost()) {
sb.append(" -"); sb.append(" -");
} }
sb.append(" " + fbCost.toString()).delete(sb.length() - 2, sb.length()); sb.append(" " + fbCost.toString()).delete(sb.length() - 2, sb.length());
if (this.getName().equals("Acorn Harvest")) {
System.out.println("fbCost: |"+sb.toString()+"|");
}
if (!fbCost.isOnlyManaCost()) { if (!fbCost.isOnlyManaCost()) {
sb.append("."); sb.append(".");
} }