fancynpcs, fancyholograms, fancydialogs: Add support for 1.21.9 (#118)

* fancynpcs: Add 1.21.9 module files

* fancynpcs: Fix Npc_1_21_9

* packets: Add support for 1.21.9-pre2

* Update release configs

* Update to 1.21.9-rc1

* fancynpcs: Use 2.0.0 for cloud
This commit is contained in:
Oliver
2025-09-28 13:22:52 +02:00
committed by GitHub
parent d33ce2346d
commit bf699305d5
86 changed files with 4071 additions and 15 deletions

View File

@@ -0,0 +1,27 @@
plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("1.21.9-rc1-R0.1-SNAPSHOT")
// compileOnly("com.fancyinnovations:fancymc:1.21.6-pre2")
compileOnly(project(":plugins:fancynpcs:fn-api"))
compileOnly(project(":libraries:common"))
compileOnly("org.lushplugins:ChatColorHandler:6.0.2")
}
tasks {
javadoc {
options.encoding = Charsets.UTF_8.name()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release = 21
}
}