Add new interface methods to FakeServer (#3140)

This commit is contained in:
pop4959 2020-04-05 23:13:13 -07:00 committed by GitHub
parent 85a5e517c9
commit 1d6ad297a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.");
}
};
}