Removes disablement of plugin for incompatible servers.

https://github.com/BentoBoxWorld/BentoBox/issues/619
This commit is contained in:
tastybento 2019-03-26 08:14:09 -07:00
parent 70749b0d16
commit 0d6f872420

View File

@ -86,13 +86,10 @@ public class BentoBox extends JavaPlugin {
public void onEnable(){ public void onEnable(){
if (!ServerCompatibility.getInstance().checkCompatibility(this).isCanLaunch()) { if (!ServerCompatibility.getInstance().checkCompatibility(this).isCanLaunch()) {
// The server's most likely incompatible. // The server's most likely incompatible.
// For safety reasons, we must stop BentoBox from loading. // Show a warning
getServer().getLogger().warning("************ Disclaminer **************");
getServer().getLogger().severe("Aborting BentoBox enabling."); getServer().getLogger().warning("BentoBox may not be compatible with this server!");
getServer().getLogger().severe("BentoBox cannot be loaded on this server."); getServer().getLogger().warning("BentoBox is tested only on the latest version of Spigot.");
getServer().getLogger().severe("You must use a compatible server software (Spigot) and run on a supported version (1.13.2).");
getServer().getPluginManager().disablePlugin(this);
return; return;
} }