File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
src/main/java/github/nighter/smartspawner/hooks Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ plugins {
22 java
33 `java- library`
44 `maven- publish`
5- id(" com.gradleup.shadow" ) version " 9.3.2 " apply false
5+ id(" com.gradleup.shadow" ) version " 9.4.0 " apply false
66}
77
88allprojects {
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ dependencies {
1515
1616 shade(" com.zaxxer:HikariCP:7.0.2" )
1717 shade(" org.mariadb.jdbc:mariadb-java-client:3.5.7" )
18- compileOnly(" org.xerial:sqlite-jdbc:3.45.1 .0" )
18+ compileOnly(" org.xerial:sqlite-jdbc:3.51.3 .0" )
1919
2020 compileOnly(" org.geysermc.floodgate:api:2.2.5-SNAPSHOT" )
2121 compileOnly(" com.sk89q.worldguard:worldguard-bukkit:7.1.0-SNAPSHOT" )
2222 compileOnly(" com.github.brcdev-minecraft:shopgui-api:3.2.0" ) {
2323 exclude(group = " *" )
2424 }
25- compileOnly(" com.palmergames.bukkit.towny:towny:0.102.0.11 " )
25+ compileOnly(" com.palmergames.bukkit.towny:towny:0.102.0.12 " )
2626 compileOnly(" com.bgsoftware:SuperiorSkyblockAPI:2025.2.1" )
2727 compileOnly(" com.github.MilkBowl:VaultAPI:1.7.1" )
2828 compileOnly(" su.nightexpress.coinsengine:CoinsEngine:2.6.0" )
@@ -38,7 +38,7 @@ dependencies {
3838 compileOnly(" dev.aurelium:auraskills-api-bukkit:2.3.9" )
3939 compileOnly(" pl.minecodes.plots:plugin-api:4.6.2" )
4040 compileOnly(" fr.maxlego08.shop:zshop-api:3.3.3" )
41- compileOnly(" fr.maxlego08.menu:zmenu-api:1.1.1.1 " )
41+ compileOnly(" fr.maxlego08.menu:zmenu-api:1.1.1.2 " )
4242
4343 implementation(" com.github.GriefPrevention:GriefPrevention:18.0.0" )
4444 implementation(" com.github.IncrediblePlugins:LandsAPI:7.24.1" )
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ private void checkProtectionPlugins() {
9999 if (simpleClaimPlugin == null || !simpleClaimPlugin .isEnabled ()) {
100100 return false ;
101101 }
102+ // Prevent SimpleClaimSystem paid version (2.x.x)
103+ if (simpleClaimPlugin .getDescription ().getVersion ().startsWith ("2." )) {
104+ return false ;
105+ }
102106 SimpleClaimSystemAPI_Provider .initialize ((SimpleClaimSystem ) simpleClaimPlugin );
103107 return SimpleClaimSystemAPI_Provider .getAPI () != null ;
104108 }, true );
You can’t perform that action at this time.
0 commit comments