Added getOnlineMode() for the Server. Thanks Rigby!

This commit is contained in:
EvilSeph 2011-06-19 06:13:52 -04:00
parent a6e5c97223
commit 89a524678a

View File

@ -565,4 +565,8 @@ public final class CraftServer implements Server {
configuration.setProperty("settings.spawn-radius", value);
configuration.save();
}
public boolean getOnlineMode() {
return this.console.onlineMode;
}
}