diff options
author | isXander <xandersmith2008@gmail.com> | 2022-11-12 13:28:44 +0000 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2022-11-12 13:28:44 +0000 |
commit | 6b9e7e79e0ae178d25bce119507d16bf3c37096c (patch) | |
tree | 69717915f1fd1173ac05679f07fac2420cbea016 /src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java | |
parent | 558b120e2d4924a84860c3f84415ab573040a293 (diff) | |
download | YetAnotherConfigLib-6b9e7e79e0ae178d25bce119507d16bf3c37096c.tar.gz YetAnotherConfigLib-6b9e7e79e0ae178d25bce119507d16bf3c37096c.tar.bz2 YetAnotherConfigLib-6b9e7e79e0ae178d25bce119507d16bf3c37096c.zip |
little changes
Diffstat (limited to 'src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java')
-rw-r--r-- | src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java index 38112f4..eb23eac 100644 --- a/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java +++ b/src/main/java/dev/isxander/yacl/impl/YetAnotherConfigLibImpl.java @@ -4,7 +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 dev.isxander.yacl.impl.utils.YACLConstants; import net.minecraft.client.gui.screen.Screen; import net.minecraft.text.Text; @@ -13,7 +13,7 @@ import java.util.function.Consumer; public record YetAnotherConfigLibImpl(Text title, ImmutableList<ConfigCategory> categories, Runnable saveFunction, Consumer<YACLScreen> initConsumer) implements YetAnotherConfigLib { @Override public Screen generateScreen(Screen parent) { - YaclConstants.LOGGER.info("Generating YACL screen"); + YACLConstants.LOGGER.info("Generating YACL screen"); return new YACLScreen(this, parent); } } |