mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-25 12:05:13 +01:00
Fix paper version not loading on versions before 1.20.5
This commit is contained in:
parent
8cde7f4162
commit
407bbf4018
@ -11,6 +11,7 @@ val supportedMinecraftVersions = listOf(
|
|||||||
|
|
||||||
val minecraftVersion = supportedMinecraftVersions.first()
|
val minecraftVersion = supportedMinecraftVersions.first()
|
||||||
val paperVersion = "${minecraftVersion}-R0.1-SNAPSHOT"
|
val paperVersion = "${minecraftVersion}-R0.1-SNAPSHOT"
|
||||||
|
val apiVersion = "1.20" // paper-version but without minor
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api ( project( ":common" ) ) {
|
api ( project( ":common" ) ) {
|
||||||
@ -65,7 +66,7 @@ tasks.processResources {
|
|||||||
|
|
||||||
expand (
|
expand (
|
||||||
"version" to project.version,
|
"version" to project.version,
|
||||||
"api_version" to minecraftVersion,
|
"api_version" to apiVersion,
|
||||||
"flow_math_version" to libs.flow.math.get().version
|
"flow_math_version" to libs.flow.math.get().version
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user