Skip to content

Commit

Permalink
build: 1.21-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Jun 12, 2024
1 parent 0b788f3 commit 65eeff6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 331 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx2G

# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=24w20a
yarn_mappings=24w20a+build.4
minecraft_version=1.21-rc1
yarn_mappings=1.21-rc1+build.1
loader_version=0.15.11

# Mod Properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import it.unimi.dsi.fastutil.longs.LongSet;
import net.minecraft.datafixer.DataFixTypes;
import net.minecraft.registry.DynamicRegistryManager;
import net.minecraft.server.world.ChunkErrorHandler;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.ChunkPos;
Expand All @@ -32,8 +33,8 @@ public abstract class MixinPointOfInterestStorage extends SerializingRegionBased

@Shadow @Final private LongSet preloadedChunks;

public MixinPointOfInterestStorage(ChunkPosKeyedStorage storageAccess, Function<Runnable, Codec<PointOfInterestSet>> codecFactory, Function<Runnable, PointOfInterestSet> factory, DynamicRegistryManager registryManager, HeightLimitView world) {
super(storageAccess, codecFactory, factory, registryManager, world);
public MixinPointOfInterestStorage(ChunkPosKeyedStorage storageAccess, Function<Runnable, Codec<PointOfInterestSet>> codecFactory, Function<Runnable, PointOfInterestSet> factory, DynamicRegistryManager registryManager, ChunkErrorHandler errorHandler, HeightLimitView world) {
super(storageAccess, codecFactory, factory, registryManager, errorHandler, world);
}

@Override
Expand Down

This file was deleted.

Loading

0 comments on commit 65eeff6

Please sign in to comment.