From f334511c2616a4bb7d8684e4070db606768f655f Mon Sep 17 00:00:00 2001 From: Cake <65340665+cakeGit@users.noreply.github.com> Date: Fri, 4 Oct 2024 10:14:18 +0100 Subject: [PATCH] Update config.md --- docs/misc/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/misc/config.md b/docs/misc/config.md index 2ae1aed6..f939d900 100644 --- a/docs/misc/config.md +++ b/docs/misc/config.md @@ -190,7 +190,7 @@ public ExampleModClient(ModContainer container) { //Then the config can be accessed, here we can print our welcome message from above public void onCommonSetupEvent(CommonSetupEvent event) { - LOGGER.info(ExampleConfig.value.get()); //Hello from config!, or other defined value + LOGGER.info("Value in config:" + ExampleConfig.value.get()); } ```