Skip to content

Commit 8fa121f

Browse files
committed
build: 24w39a
1 parent ced5348 commit 8fa121f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

c2me-notickvd/src/main/java/com/ishland/c2me/notickvd/mixin/MixinWorldChunk.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@Mixin(WorldChunk.class)
1010
public class MixinWorldChunk {
1111

12-
@ModifyArg(method = "runPostProcessing", at = @At(value = "INVOKE", target = "Lnet/minecraft/world/World;setBlockState(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;I)Z"))
12+
@ModifyArg(method = "runPostProcessing", at = @At(value = "INVOKE", target = "Lnet/minecraft/server/world/ServerWorld;setBlockState(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;I)Z"))
1313
private int notifyListenersWhenPostProcessing(int flags) {
1414
// if (true) return flags;
1515
flags &= ~Block.NO_REDRAW; // clear NO_REDRAW

c2me-rewrites-chunk-system/src/main/java/com/ishland/c2me/rewrites/chunksystem/common/statuses/ServerBlockTicking.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public ServerBlockTicking(int ordinal) {
3838
public CompletionStage<Void> upgradeToThis(ChunkLoadingContext context) {
3939
return CompletableFuture.runAsync(() -> {
4040
final WorldChunk chunk = (WorldChunk) context.holder().getItem().get().chunk();
41-
chunk.runPostProcessing();
41+
chunk.runPostProcessing(((IThreadedAnvilChunkStorage) context.tacs()).getWorld());
4242
((IThreadedAnvilChunkStorage) context.tacs()).getWorld().disableTickSchedulers(chunk);
4343
sendChunkToPlayer(context);
4444
((IThreadedAnvilChunkStorage) context.tacs()).getTotalChunksLoadedCount().incrementAndGet(); // never decremented in vanilla

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ org.gradle.warning.mode=all
55
fabric.loom.multiProjectOptimisation=true
66
# Fabric Properties
77
# check these on https://fabricmc.net/versions.html
8-
minecraft_version=24w38a
9-
yarn_mappings=24w38a+build.4
8+
minecraft_version=24w39a
9+
yarn_mappings=24w39a+build.2
1010
loader_version=0.16.5
1111
fabric_version=0.104.2+1.21.2
1212
# Mod Properties

0 commit comments

Comments
 (0)