Complete all serverbound packets at PLAY state
This commit is contained in:
153 files changed
+3636
-131
No files matched your search
+8
-2
@@ -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()
|
||||
Reference in New Issue
Block a user