Disable logging mixin for now
This commit is contained in:
parent
2d12caf392
commit
79c81d7772
@ -1,6 +1,7 @@
|
|||||||
package dev.c0de.minecraft.mixin;
|
package dev.c0de.minecraft.mixin;
|
||||||
|
|
||||||
import dev.c0de.minecraft.c0deFoxMod;
|
import dev.c0de.minecraft.c0deFoxMod;
|
||||||
|
|
||||||
import net.minecraft.client.gui.screen.TitleScreen;
|
import net.minecraft.client.gui.screen.TitleScreen;
|
||||||
import org.spongepowered.asm.mixin.Mixin;
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
import org.spongepowered.asm.mixin.injection.At;
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
@ -11,7 +12,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|||||||
public class c0deFoxMixin {
|
public class c0deFoxMixin {
|
||||||
@Inject(at = @At("HEAD"), method = "init()V")
|
@Inject(at = @At("HEAD"), method = "init()V")
|
||||||
private void init(CallbackInfo info) {
|
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!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user