geforkt von Mirrors/Paper
onEnable and onDisable are no longer required implementations for JavaPlugins
By: Nathan Adams <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
Ursprung
11220aa522
Commit
e423860f9f
@ -20,7 +20,6 @@ import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.command.PluginCommand;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.generator.ChunkGenerator;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
import org.bukkit.plugin.PluginDescriptionFile;
|
||||
@ -333,7 +332,11 @@ public abstract class JavaPlugin implements Plugin {
|
||||
}
|
||||
}
|
||||
|
||||
public void onLoad() {} // Empty!
|
||||
public void onLoad() {}
|
||||
|
||||
public void onDisable() {}
|
||||
|
||||
public void onEnable() {}
|
||||
|
||||
public ChunkGenerator getDefaultWorldGenerator(String worldName, String id) {
|
||||
getServer().getLogger().severe("Plugin " + getDescription().getFullName() + " does not contain any generators that may be used in the default world!");
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren