diff --git a/Essentials/test/com/earth2me/essentials/FakeServer.java b/Essentials/test/com/earth2me/essentials/FakeServer.java index 5d032d091..893500bfd 100644 --- a/Essentials/test/com/earth2me/essentials/FakeServer.java +++ b/Essentials/test/com/earth2me/essentials/FakeServer.java @@ -13,6 +13,7 @@ import org.bukkit.command.PluginCommand; import org.bukkit.conversations.Conversation; import org.bukkit.conversations.ConversationAbandonedEvent; import org.bukkit.entity.Entity; +import org.bukkit.entity.EntityType; import org.bukkit.entity.Player; import org.bukkit.event.Event; import org.bukkit.event.EventPriority; @@ -592,6 +593,96 @@ public class FakeServer implements Server { } throw new UnsupportedOperationException("Not supported yet."); } + + @Override + public void incrementStatistic(Statistic statistic) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public int getStatistic(Statistic statistic) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void incrementStatistic(Statistic statistic, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void setStatistic(Statistic statistic, int newValue) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void incrementStatistic(Statistic statistic, Material material) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic, Material material) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public int getStatistic(Statistic statistic, Material material) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void incrementStatistic(Statistic statistic, Material material, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic, Material material, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void setStatistic(Statistic statistic, Material material, int newValue) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void incrementStatistic(Statistic statistic, EntityType entityType) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic, EntityType entityType) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public int getStatistic(Statistic statistic, EntityType entityType) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void incrementStatistic(Statistic statistic, EntityType entityType, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void decrementStatistic(Statistic statistic, EntityType entityType, int amount) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void setStatistic(Statistic statistic, EntityType entityType, int newValue) { + throw new UnsupportedOperationException("Not supported yet."); + } }; }