Skip to content

Commit

Permalink
1.21.4 (#3021)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
PierreSchwang and me4502 authored Dec 17, 2024
1 parent 7427665 commit 74bb6e3
Show file tree
Hide file tree
Showing 35 changed files with 8,905 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ allprojects {
}

applyCommonConfiguration()
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3")
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3", "1.21.4")

tasks {
supportedVersions.forEach {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ rootProject.name = "FastAsyncWorldEdit"

include("worldedit-libs")

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

Expand Down
17 changes: 17 additions & 0 deletions worldedit-bukkit/adapters/adapter-1_21_4/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension

plugins {
java
}

applyPaperweightAdapterConfiguration()

repositories {
gradlePluginPortal()
}

dependencies {
// url=https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/1.21.4-R0.1-SNAPSHOT/
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.4-R0.1-20241207.191616-8")
compileOnly(libs.paperlib)
}
Loading

0 comments on commit 74bb6e3

Please sign in to comment.