Skip to content

Commit

Permalink
build: 1.20.2-pre4
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Sep 14, 2023
1 parent 57468d4 commit b836a80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ private boolean handlePendingReads() {
try {
final DataInputStream input = new DataInputStream(new ByteArrayInputStream(cached.right().get()));
if (scanner != null) {
NbtIo.scan(input, scanner, NbtTagSizeTracker.method_53898());
NbtIo.scan(input, scanner, NbtTagSizeTracker.ofUnlimitedBytes());
return null;
} else {
final NbtCompound compound = NbtIo.readCompound(input);
Expand Down Expand Up @@ -283,7 +283,7 @@ private void scheduleChunkRead(long pos, CompletableFuture<NbtCompound> future,
try {
try (DataInputStream inputStream = chunkInputStream) {
if (scanner != null) {
NbtIo.scan(inputStream, scanner, NbtTagSizeTracker.method_53898());
NbtIo.scan(inputStream, scanner, NbtTagSizeTracker.ofUnlimitedBytes());
return null;
} else {
return NbtIo.readCompound(inputStream);
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true
# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.20.2-pre3
yarn_mappings=1.20.2-pre3+build.2
minecraft_version=1.20.2-pre4
yarn_mappings=1.20.2-pre4+build.1
loader_version=0.14.22
# Mod Properties
mod_version=0.2.0+alpha.10
Expand Down

0 comments on commit b836a80

Please sign in to comment.