Update of classes because of bukkit changes

This commit is contained in:
snowleo 2011-06-23 12:44:16 +02:00
parent c3a8a51ecd
commit 036bbbb462
4 changed files with 119 additions and 0 deletions

View file

@ -3,6 +3,7 @@ package com.earth2me.essentials;
import com.avaje.ebean.config.ServerConfig;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;
import org.bukkit.Location;
import org.bukkit.Server;
@ -218,4 +219,24 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
public Map<String, String[]> getCommandAliases()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public int getSpawnRadius()
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void setSpawnRadius(int i)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean getOnlineMode()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}