FINE JUST FINE>>>>>> STUPID CHICKENS

This commit is contained in:
Jonathan Williams 2013-12-13 21:36:57 -08:00
parent 69fa9eaba5
commit ac049e0397
1 changed files with 0 additions and 21 deletions

View File

@ -108,27 +108,6 @@ public class StatsManager extends MiniPlugin
return this;
}
public void getStat(Player player, String table, String statName)
{
getStat(player.getName(), table, statName);
}
public int getStat(String playerName, String table, String statName)
{
if (!_playerStatList.containsKey(table))
{
System.out.println("Error getting stats for " + playerName + " on table " + table + " (" + statName + ") : TABLE DOES NOT EXIST!");
return 0;
}
if (!_playerStatList.get(table).containsKey(playerName))
{
_playerStatList.get(table).put(playerName, new PlayerStats());
}
return _playerStatList.get(table).get(playerName).getStat(statName);
}
public void addStat(Player player, String table, String statName, int value)
{