1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-02 09:07:08 +02:00

New methods in player and server interface.

This commit is contained in:
snowleo
2011-09-17 13:14:34 +02:00
parent 0e9b971280
commit 002e4a2772
3 changed files with 182 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import java.util.UUID;
import java.util.concurrent.Callable;
import java.util.concurrent.Future;
import java.util.logging.Logger;
import org.bukkit.GameMode;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.World;
@@ -445,4 +446,16 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public GameMode getDefaultGameMode()
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void setDefaultGameMode(GameMode gm)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}