Fix ChestShop not starting if an error occurred hooking into a dependency

This commit is contained in:
Phoenix616 2023-09-25 12:55:42 +01:00
parent a9cb8096e6
commit 0fcbcbbb11
No known key found for this signature in database
GPG Key ID: 40E2321E71738EB0
1 changed files with 6 additions and 1 deletions

View File

@ -20,6 +20,7 @@ import org.bukkit.plugin.PluginManager;
import java.util.AbstractMap;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.stream.Collectors;
/**
@ -68,7 +69,11 @@ public class Dependencies implements Listener {
Plugin plugin = pluginManager.getPlugin(dependency);
if (plugin != null && plugin.isEnabled()) {
loadPlugin(dependency, plugin);
try {
loadPlugin(dependency, plugin);
} catch (Exception e) {
plugin.getLogger().log(Level.WARNING, "Unable to hook into " + plugin.getName() + " " + plugin.getDescription().getVersion(), e);
}
}
}