Skip to content

Commit ed310ab

Browse files
committed
Remove BentoBox integration checks from IntegrationManager
1 parent 9b545bb commit ed310ab

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

core/src/main/java/github/nighter/smartspawner/hooks/IntegrationManager.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public class IntegrationManager {
2525
private boolean hasWorldGuard = false;
2626
private boolean hasGriefPrevention = false;
2727
private boolean hasSuperiorSkyblock2 = false;
28-
private boolean hasBentoBox = false;
2928
private boolean hasSimpleClaimSystem = false;
3029
private boolean hasRedProtect = false;
3130
private boolean hasMinePlots = false;
@@ -86,11 +85,6 @@ private void checkProtectionPlugins() {
8685
return false;
8786
}, true);
8887

89-
hasBentoBox = checkPlugin("BentoBox", () -> {
90-
Plugin bentoPlugin = Bukkit.getPluginManager().getPlugin("BentoBox");
91-
return bentoPlugin != null;
92-
}, true);
93-
9488
hasSimpleClaimSystem = checkPlugin("SimpleClaimSystem", () -> {
9589
Plugin simpleClaimPlugin = Bukkit.getPluginManager().getPlugin("SimpleClaimSystem");
9690
if (simpleClaimPlugin == null || !simpleClaimPlugin.isEnabled()) {

0 commit comments

Comments
 (0)