Compare commits

...

2 Commits

Author SHA1 Message Date
Ennui Langeweile ad5f4728da
Simplify dependency declaration on Quilt Loader 2023-06-09 02:50:36 -03:00
Ennui Langeweile 8bed1350ec
Remove no-longer-needed mixin prefix 2023-06-09 02:46:55 -03:00
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(TitleScreen.class)
public class TitleScreenMixin {
@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!");
}
}

View File

@ -24,7 +24,7 @@
"depends": [
{
"id": "quilt_loader",
"versions": ">=0.18.3-"
"versions": ">=0.18.3"
},
{
"id": "quilted_fabric_api",