From 1d6ad297a4bf61f738fbc5e8449bd1c8e5e8b66d Mon Sep 17 00:00:00 2001 From: pop4959 Date: Sun, 5 Apr 2020 23:13:13 -0700 Subject: [PATCH] Add new interface methods to FakeServer (#3140) --- .../com/earth2me/essentials/FakeServer.java | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) 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."); + } }; }