Merge branch 'bukkitupdate'

Conflicts:
	EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtectEntityListener.java
This commit is contained in:
snowleo 2011-06-23 13:49:37 +02:00
commit 9d6727daf2
8 changed files with 155 additions and 8 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.");
}
}