summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/OfflinePlayer.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/OfflinePlayer.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
index 10e205a65..c06f6888e 100644
--- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
+++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
@@ -475,30 +475,126 @@ public class OfflinePlayer implements Player
}
@Override
+ public void removeAchievement(Achievement achievement)
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public boolean hasAchievement(Achievement achievement)
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
public void incrementStatistic(Statistic ststc)
{
throw new UnsupportedOperationException(_("notSupportedYet"));
}
@Override
+ public void decrementStatistic(Statistic statistic) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
public void incrementStatistic(Statistic ststc, int i)
{
throw new UnsupportedOperationException(_("notSupportedYet"));
}
@Override
+ public void decrementStatistic(Statistic statistic, int i) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void setStatistic(Statistic statistic, int i) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public int getStatistic(Statistic statistic) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
public void incrementStatistic(Statistic ststc, Material mtrl)
{
throw new UnsupportedOperationException(_("notSupportedYet"));
}
@Override
+ public void decrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public int getStatistic(Statistic statistic, Material material) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
public void incrementStatistic(Statistic ststc, Material mtrl, int i)
{
throw new UnsupportedOperationException(_("notSupportedYet"));
}
@Override
+ public void decrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void setStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void incrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void decrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public int getStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void incrementStatistic(Statistic statistic, EntityType entityType, int i) throws IllegalArgumentException
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void decrementStatistic(Statistic statistic, EntityType entityType, int i)
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
+ public void setStatistic(Statistic statistic, EntityType entityType, int i)
+ {
+ throw new UnsupportedOperationException(_("notSupportedYet"));
+ }
+
+ @Override
public void playNote(Location lctn, byte b, byte b1)
{
throw new UnsupportedOperationException(_("notSupportedYet"));