mirror of
https://github.com/ayabusa/Modern-Chunk-Detector.git
synced 2024-11-23 18:53:25 +00:00
15 lines
521 B
Java
15 lines
521 B
Java
|
package modern_chunk_detector.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
|
||
|
}
|
||
|
}
|