mod generation
This commit is contained in:
20
src/main/java/de/jottyfan/minecraft/mixin/QuicklyMixin.java
Normal file
20
src/main/java/de/jottyfan/minecraft/mixin/QuicklyMixin.java
Normal file
@@ -0,0 +1,20 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user