Skip to content

Commit 74bb6e3

Browse files
1.21.4 (#3021)
* Add the bundled data files * feat: add 1.21.4 adapter * Update the XTypes/XCategories files Co-authored-by: Maddy Miller <[email protected]> * chore/fix: update isFullCube to actually check for shape not occlusion * chore: remove forget packet * chore: add block connection fixer to adapter --------- Co-authored-by: Maddy Miller <[email protected]>
1 parent 7427665 commit 74bb6e3

35 files changed

+8905
-8
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ allprojects {
8383
}
8484

8585
applyCommonConfiguration()
86-
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3")
86+
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3", "1.21.4")
8787

8888
tasks {
8989
supportedVersions.forEach {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rootProject.name = "FastAsyncWorldEdit"
22

33
include("worldedit-libs")
44

5-
listOf("1_20_2", "1_20_4", "1_20_5", "1_21", "1_21_3").forEach {
5+
listOf("1_20_2", "1_20_4", "1_20_5", "1_21", "1_21_3", "1_21_4").forEach {
66
include("worldedit-bukkit:adapters:adapter-$it")
77
}
88

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension
2+
3+
plugins {
4+
java
5+
}
6+
7+
applyPaperweightAdapterConfiguration()
8+
9+
repositories {
10+
gradlePluginPortal()
11+
}
12+
13+
dependencies {
14+
// url=https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/1.21.4-R0.1-SNAPSHOT/
15+
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.4-R0.1-20241207.191616-8")
16+
compileOnly(libs.paperlib)
17+
}

0 commit comments

Comments
 (0)