This commit is contained in:
Maxmtg
2013-04-03 19:07:42 +00:00
parent 6c292fd067
commit 7ffd8008d5

View File

@@ -83,7 +83,7 @@ public final class ManaCost implements Comparable<ManaCost> {
this.hasNoCost = false;
while (parser.hasNext()) {
final ManaCostShard shard = parser.next();
if (shard != null) {
if (shard != null && shard != ManaCostShard.COLORLESS) {
shardsTemp.add(shard);
} // null is OK - that was generic mana
}