Complete all serverbound packets at PLAY state

This commit is contained in:
2026-09-06 01:18:32 +08:00
parent 94cca61df1
commit 52917e9425
153 files changed
+3636 -131

No files matched your search

+8 -2
View File
@@ -5,7 +5,11 @@ plugins {
allprojects {
group = "cn.rtast.libmc"
version = providers.gradleProperty("libVersion").get()
val libVersion = getProperty("libVersion")
version = when (name) {
"protocol" -> "${getProperty("protocolVersion")}-$libVersion"
else -> libVersion
}
repositories {
mavenCentral()
@@ -29,4 +33,6 @@ subprojects {
}
}
}
}
}
fun getProperty(name: String): String = providers.gradleProperty(name).get()