fixed add counters effect string description (null name if Counter is used, and no space for "put 3 Chargecounters")

This commit is contained in:
magenoxx 2010-12-31 10:03:39 +03:00
parent b5e098fb50
commit a7dcc3acfa
2 changed files with 2 additions and 1 deletions

View file

@ -53,6 +53,7 @@ public class AddCountersTargetEffect extends OneShotEffect<AddCountersTargetEffe
public AddCountersTargetEffect(Counter counter) {
super(Outcome.Benefit);
this.name = counter.getName();
this.counter = counter;
}