13
0
geforkt von Mirrors/Paper

Add isHardcore API to check if the server is in hardcore mode or not. Adds BUKKIT-2707

By: EvilSeph <evilseph@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2012-10-29 01:45:08 -04:00
Ursprung c73a3c02f0
Commit 1321866724
2 geänderte Dateien mit 11 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -243,6 +243,10 @@ public final class Bukkit {
return server.getAllowFlight();
}
public static boolean isHardcore() {
return server.isHardcore();
}
public static void shutdown() {
server.shutdown();
}

Datei anzeigen

@ -475,6 +475,13 @@ public interface Server extends PluginMessageRecipient {
*/
public boolean getAllowFlight();
/**
* Gets whether the server is in hardcore mode or not.
*
* @return Whether this server is in hardcore mode or not.
*/
public boolean isHardcore();
/**
* Gets whether to use vanilla (false) or exact behaviour (true).
*