Added getCounters(Game game) for PermanentImpl.

This commit is contained in:
LevelX2 2015-07-25 20:25:19 +02:00
parent 78201f5511
commit d5963642b1

View file

@ -325,6 +325,11 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
return counters;
}
@Override
public Counters getCounters(Game game) {
return counters;
}
@Override
public void addCounters(String name, int amount, Game game) {
addCounters(name, amount, game, null);