From 558b120e2d4924a84860c3f84415ab573040a293 Mon Sep 17 00:00:00 2001 From: isXander Date: Sat, 12 Nov 2022 11:05:16 +0000 Subject: REAL config library --- src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java') diff --git a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java index 7e2afdb..38112f4 100644 --- a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java +++ b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java @@ -4,6 +4,7 @@ import com.google.common.collect.ImmutableList; import dev.isxander.yacl.api.ConfigCategory; import dev.isxander.yacl.api.YetAnotherConfigLib; import dev.isxander.yacl.gui.YACLScreen; +import dev.isxander.yacl.impl.utils.YaclConstants; import net.minecraft.client.gui.screen.Screen; import net.minecraft.text.Text; @@ -12,6 +13,7 @@ import java.util.function.Consumer; public record YetAnotherConfigLibImpl(Text title, ImmutableList categories, Runnable saveFunction, Consumer initConsumer) implements YetAnotherConfigLib { @Override public Screen generateScreen(Screen parent) { + YaclConstants.LOGGER.info("Generating YACL screen"); return new YACLScreen(this, parent); } } -- cgit