Skip to content

Commit 53e35b7

Browse files
committed
build: 25w32a
1 parent 52f9010 commit 53e35b7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

c2me-notickvd/src/main/java/com/ishland/c2me/notickvd/mixin/client/MixinIntegratedServer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package com.ishland.c2me.notickvd.mixin.client;
22

33
import com.mojang.datafixers.DataFixer;
4-
import net.minecraft.class_11545;
54
import net.minecraft.resource.ResourcePackManager;
65
import net.minecraft.server.MinecraftServer;
76
import net.minecraft.server.SaveLoader;
87
import net.minecraft.server.integrated.IntegratedServer;
98
import net.minecraft.server.network.ServerPlayerEntity;
109
import net.minecraft.util.ApiServices;
10+
import net.minecraft.world.chunk.ChunkLoadProgress;
1111
import net.minecraft.world.level.storage.LevelStorage;
1212
import org.spongepowered.asm.mixin.Mixin;
1313
import org.spongepowered.asm.mixin.injection.At;
@@ -19,8 +19,8 @@
1919
@Mixin(IntegratedServer.class)
2020
public abstract class MixinIntegratedServer extends MinecraftServer {
2121

22-
public MixinIntegratedServer(Thread serverThread, LevelStorage.Session session, ResourcePackManager dataPackManager, SaveLoader saveLoader, Proxy proxy, DataFixer dataFixer, ApiServices apiServices, class_11545 worldGenerationProgressListenerFactory) {
23-
super(serverThread, session, dataPackManager, saveLoader, proxy, dataFixer, apiServices, worldGenerationProgressListenerFactory);
22+
public MixinIntegratedServer(Thread serverThread, LevelStorage.Session session, ResourcePackManager dataPackManager, SaveLoader saveLoader, Proxy proxy, DataFixer dataFixer, ApiServices apiServices, ChunkLoadProgress chunkLoadProgress) {
23+
super(serverThread, session, dataPackManager, saveLoader, proxy, dataFixer, apiServices, chunkLoadProgress);
2424
}
2525

2626
@Inject(method = "tick", at = @At(value = "INVOKE", target = "Lnet/minecraft/server/integrated/IntegratedServer;incrementTotalWorldTimeStat()V", shift = At.Shift.AFTER))

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ org.gradle.warning.mode=all
55
#org.gradle.configuration-cache=true
66
# Fabric Properties
77
# check these on https://fabricmc.net/versions.html
8-
minecraft_version=25w31a
9-
yarn_mappings=25w31a+build.3
8+
minecraft_version=25w32a
9+
yarn_mappings=25w32a+build.1
1010
loader_version=0.17.0
11-
fabric_version=0.129.0+1.21.8
11+
fabric_version=0.131.0+1.21.9
1212
# Mod Properties
1313
mod_version=0.3.5+alpha.0
1414
maven_group=com.ishland.c2me

0 commit comments

Comments
 (0)