20 lines
479 B
Java
20 lines
479 B
Java
package de.jottyfan.minecraft.mixin;
|
|
|
|
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;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
|
|
/**
|
|
*
|
|
* @author jotty
|
|
*
|
|
*/
|
|
@Mixin(MinecraftServer.class)
|
|
public class QuicklyMixin {
|
|
@Inject(at = @At("HEAD"), method = "loadLevel")
|
|
private void init(CallbackInfo info) {
|
|
}
|
|
} |