removed placeholder mixin logger message

This commit is contained in:
Jonas_Jones 2023-04-15 16:47:01 +02:00
parent 8006eb85a1
commit 8b7e17556d

View file

@ -11,6 +11,6 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "init()V")
private void init(CallbackInfo info) {
NotEnoughCursedness.LOGGER.info("This line is printed by an example mod mixin!");
//NotEnoughCursedness.LOGGER.info("This line is printed by an example mod mixin!");
}
}