diff --git a/gradle.properties b/gradle.properties index 42a030991..01755ac13 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,6 +7,6 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled javaVersion=25 mcVersion=26.1.1 group=dev.slne.surf.api -version=3.2.0 +version=3.2.1 relocationPrefix=dev.slne.surf.api.libs snapshot=false diff --git a/surf-api-paper/surf-api-paper-server/build.gradle.kts b/surf-api-paper/surf-api-paper-server/build.gradle.kts index 46031b32d..9f927eacc 100644 --- a/surf-api-paper/surf-api-paper-server/build.gradle.kts +++ b/surf-api-paper/surf-api-paper-server/build.gradle.kts @@ -93,6 +93,11 @@ paper { joinClasspath = true load = RelativeLoadOrder.BEFORE } + register("LuckPerms") { + required = true + joinClasspath = true + load = RelativeLoadOrder.BEFORE + } } } diff --git a/surf-api-velocity/surf-api-velocity-server/src/main/kotlin/dev/slne/surf/api/velocity/server/VelocityMain.kt b/surf-api-velocity/surf-api-velocity-server/src/main/kotlin/dev/slne/surf/api/velocity/server/VelocityMain.kt index 86d2f7818..a3e21de58 100644 --- a/surf-api-velocity/surf-api-velocity-server/src/main/kotlin/dev/slne/surf/api/velocity/server/VelocityMain.kt +++ b/surf-api-velocity/surf-api-velocity-server/src/main/kotlin/dev/slne/surf/api/velocity/server/VelocityMain.kt @@ -18,10 +18,10 @@ import java.util.concurrent.ExecutorService @Plugin( id = "surf-api-velocity", name = "Surf API Velocity", - version = "2.0.0", + version = "3.2.1", description = "The Surf API Velocity plugin.", authors = ["twisti"], - dependencies = [Dependency(id = "packetevents"), Dependency(id = "commandapi")] + dependencies = [Dependency(id = "packetevents"), Dependency(id = "commandapi"), Dependency(id = "luckperms")] ) class VelocityMain @Inject constructor( val server: ProxyServer,