From e63a3c989e3a899bdc81558dd2e4c5cc2c659bde Mon Sep 17 00:00:00 2001 From: xander Date: Thu, 1 Sep 2022 08:59:28 +0100 Subject: make YACL builder not require title to construct --- src/testmod/java/dev/isxander/yacl/test/ModMenuIntegration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/testmod/java/dev/isxander') diff --git a/src/testmod/java/dev/isxander/yacl/test/ModMenuIntegration.java b/src/testmod/java/dev/isxander/yacl/test/ModMenuIntegration.java index f328ab4..cdaf3a1 100644 --- a/src/testmod/java/dev/isxander/yacl/test/ModMenuIntegration.java +++ b/src/testmod/java/dev/isxander/yacl/test/ModMenuIntegration.java @@ -15,7 +15,8 @@ import net.minecraft.text.Text; public class ModMenuIntegration implements ModMenuApi { @Override public ConfigScreenFactory getModConfigScreenFactory() { - return (parent) -> YetAnotherConfigLib.createBuilder(Text.of("Test GUI")) + return (parent) -> YetAnotherConfigLib.createBuilder() + .title(Text.of("Test GUI")) .category(ConfigCategory.createBuilder() .name(Text.of("Control Examples")) .option(Option.createBuilder(boolean.class) -- cgit