Added getOnlineMode() for the Server. Thanks Rigby!

This commit is contained in:
EvilSeph
2011-06-19 06:13:28 -04:00
parent bbff1815f3
commit 51ec8da5b8

View File

@@ -285,4 +285,11 @@ public interface Server {
* @param value New spawn radius, or 0 if none
*/
public void setSpawnRadius(int value);
/**
* Gets whether the Server is in online mode or not.
*
* @return Whether the server is in online mode.
*/
public boolean getOnlineMode();
}