1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-02 09:07:08 +02:00
This commit is contained in:
ementalo
2011-07-17 22:31:12 +01:00
parent 2f00865847
commit 29a15dfe18
7 changed files with 165 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import com.avaje.ebean.config.ServerConfig;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.logging.Logger;
import org.bukkit.Location;
import org.bukkit.Server;
@@ -244,4 +245,9 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
public World getWorld(UUID uuid)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}