mirror of
https://github.com/QuiltMC/quilt-template-mod
synced 2024-08-15 00:23:32 +00:00
Remove no-longer-needed mixin prefix
This commit is contained in:
parent
5b9300fe24
commit
9c1f125742
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
@Mixin(TitleScreen.class)
|
@Mixin(TitleScreen.class)
|
||||||
public class TitleScreenMixin {
|
public class TitleScreenMixin {
|
||||||
@Inject(method = "init", at = @At("TAIL"))
|
@Inject(method = "init", at = @At("TAIL"))
|
||||||
public void exampleMod$onInit(CallbackInfo ci) {
|
public void onInit(CallbackInfo ci) {
|
||||||
ExampleMod.LOGGER.info("This line is printed by an example mod mixin!");
|
ExampleMod.LOGGER.info("This line is printed by an example mod mixin!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue