* Fury Charm - Fixed that Suspended Cards could not be cast, if last counter was removed with Fury Charm.

This commit is contained in:
LevelX2 2013-09-01 11:15:31 +02:00
parent 5d12d7f1bf
commit 277f9363fd
4 changed files with 10 additions and 9 deletions

View file

@ -50,7 +50,8 @@ public class RemoveCounterSourceEffect extends OneShotEffect<RemoveCounterSource
StringBuilder sb = new StringBuilder();
sb.append("remove ").append(Integer.toString(counter.getCount())).append(" ").append(counter.getName()).append(" counters from {this}");
staticText = sb.toString();
} else
} else {
staticText = "remove a " + counter.getName() + " counter from {this}";
}
}
}