We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b67a9b4 + d1dc384 commit d7ad2e6Copy full SHA for d7ad2e6
1 file changed
core/src/main/java/github/nighter/smartspawner/hooks/IntegrationManager.java
@@ -99,6 +99,10 @@ private void checkProtectionPlugins() {
99
if (simpleClaimPlugin == null || !simpleClaimPlugin.isEnabled()) {
100
return false;
101
}
102
+ // Prevent SimpleClaimSystem paid version (2.x.x)
103
+ if (simpleClaimPlugin.getDescription().getVersion().startsWith("2.")) {
104
+ return false;
105
+ }
106
SimpleClaimSystemAPI_Provider.initialize((SimpleClaimSystem) simpleClaimPlugin);
107
return SimpleClaimSystemAPI_Provider.getAPI() != null;
108
}, true);
0 commit comments