mirror of
https://github.com/JonasunderscoreJones/BuildGPT.git
synced 2025-10-23 00:09:18 +02:00
15 lines
No EOL
511 B
Java
15 lines
No EOL
511 B
Java
package com.example.mixin;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|
|
|
@Mixin(MinecraftServer.class)
|
|
public class ExampleMixin {
|
|
@Inject(at = @At("HEAD"), method = "loadWorld")
|
|
private void init(CallbackInfo info) {
|
|
// This code is injected into the start of MinecraftServer.loadWorld()V
|
|
}
|
|
} |