Skip to content

Commit 6543cd4

Browse files
committed
Fix cherry pick issue in CompressedBlockEntity
1 parent 336f1f2 commit 6543cd4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/com/moulberry/axiom/buffer/CompressedBlockEntity.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ public CompoundTag decompress() {
4545

4646
try {
4747
byte[] nbt = Zstd.decompress(this.compressed, zstdDictDecompress, this.originalSize);
48-
<<<<<<< HEAD
49-
return NbtIo.read(new DataInputStream(new ByteArrayInputStream(nbt)), new NbtAccounter(131072));
50-
=======
5148
return NbtIo.read(new DataInputStream(new ByteArrayInputStream(nbt)), AxiomPaper.PLUGIN.createNbtAccounter());
52-
>>>>>>> 1c98367 (Raise NBT limit to maximum when 'allow-large-payload-for-all-packets' is used)
5349
} catch (IOException e) {
5450
throw new RuntimeException(e);
5551
}

0 commit comments

Comments
 (0)