diff --git a/src/main/java/dev/c0de/minecraft/mixin/c0deFoxMixin.java b/src/main/java/dev/c0de/minecraft/mixin/c0deFoxMixin.java index 5b33d5b..56ba3ca 100644 --- a/src/main/java/dev/c0de/minecraft/mixin/c0deFoxMixin.java +++ b/src/main/java/dev/c0de/minecraft/mixin/c0deFoxMixin.java @@ -1,6 +1,7 @@ package dev.c0de.minecraft.mixin; import dev.c0de.minecraft.c0deFoxMod; + import net.minecraft.client.gui.screen.TitleScreen; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; @@ -11,7 +12,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; public class c0deFoxMixin { @Inject(at = @At("HEAD"), method = "init()V") private void init(CallbackInfo info) { - c0deFoxMod.LOGGER.info("This line is printed by an example mod mixin!"); + // c0deFoxMod.LOGGER.info("This line is printed by an example mod mixin!"); } }