Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3public class CounterStatistic extends Statistic {
4
5 public CounterStatistic(int i, String s, Counter counter) {
6 super(i, s, counter);
7 }
8
9 public CounterStatistic(int i, String s) {
10 super(i, s);
11 }
12
13 public Statistic d() {
14 super.d();
15 StatisticList.c.add(this);
16 return this;
17 }
18}