Skip to content

Commit 5e426ee

Browse files
Merge pull request #3161 from IntellectualSites/fix/3160
fix: saving of blocks with tile entity data in FAST_V3
1 parent ac88d95 commit 5e426ee

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies {
2424
implementation(gradleApi())
2525
implementation("org.ajoberstar.grgit:grgit-gradle:5.3.0")
2626
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.6")
27-
implementation("io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin:1.7.7")
27+
implementation("io.papermc.paperweight.userdev:io.papermc.paperweight.userdev.gradle.plugin:2.0.0-beta.16")
2828
constraints {
2929
val asmVersion = "[9.7,)"
3030
implementation("org.ow2.asm:asm:$asmVersion") {

worldedit-bukkit/adapters/adapter-1_21_4/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ repositories {
1212

1313
dependencies {
1414
// 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-20241215.095037-18")
15+
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.4-R0.1-20250327.133756-218")
1616
compileOnly(libs.paperlib)
1717
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/FastSchematicWriterV3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private void writeBlocks(NBTOutputStream blocks, Clipboard clipboard) throws IOE
136136
throw new RuntimeException("Failed to write tile data", e);
137137
}
138138
}
139-
return block;
139+
return block.toImmutableState();
140140
},
141141
block -> {
142142
char ordinal = block.getOrdinalChar();

0 commit comments

Comments
 (0)