Skip to content

Commit

Permalink
build: 23w51b
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Dec 19, 2023
1 parent 8d05702 commit 7d5ba88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: upload to modrinth and curseforge
run: ./gradlew modrinth curseforge
if: github.ref == 'refs/heads/ver/1.20.4'
if: github.ref == 'refs/heads/ver/1.20.5'
env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_UPLOAD_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_API_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import it.unimi.dsi.fastutil.objects.ObjectArraySet;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.nbt.NbtIo;
import net.minecraft.nbt.NbtTagSizeTracker;
import net.minecraft.nbt.NbtSizeTracker;
import net.minecraft.nbt.scanner.NbtScanner;
import net.minecraft.util.math.ChunkPos;
import net.minecraft.world.storage.RegionBasedStorage;
Expand Down 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.ofUnlimitedBytes());
NbtIo.scan(input, scanner, NbtSizeTracker.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.ofUnlimitedBytes());
NbtIo.scan(inputStream, scanner, NbtSizeTracker.ofUnlimitedBytes());
return null;
} else {
return NbtIo.readCompound(inputStream);
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true
# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
loader_version=0.15.1
minecraft_version=23w51b
yarn_mappings=23w51b+build.1
loader_version=0.15.3
# Mod Properties
mod_version=0.2.0+alpha.11
maven_group=com.ishland.c2me
Expand Down

0 comments on commit 7d5ba88

Please sign in to comment.