更换到Mojang官方反混淆表

https://fabricmc.net/2025/10/31/obfuscation.html
This commit is contained in:
TheWhiteDog9487
2025-12-11 14:25:46 +08:00
committed by TheWhiteDog9487
parent c579c266a5
commit 2f5e154cc4
6 changed files with 82 additions and 79 deletions

View File

@@ -8,7 +8,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(MinecraftServer.class)
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "loadWorld")
@Inject(at = @At("HEAD"), method = "loadLevel")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadWorld()V
}