Skip to content
Merged
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions surf-api-paper/surf-api-paper-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ paper {
joinClasspath = true
load = RelativeLoadOrder.BEFORE
}
register("LuckPerms") {
required = true
joinClasspath = true
load = RelativeLoadOrder.BEFORE
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down