From 8463f45fd891a736f88ed5ee0735b16bf4ff752b Mon Sep 17 00:00:00 2001 From: Pyrbu Date: Fri, 27 Oct 2023 05:41:23 +0200 Subject: [PATCH] config comment changes --- .../java/lol/pyr/znpcsplus/config/MainConfig.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/plugin/src/main/java/lol/pyr/znpcsplus/config/MainConfig.java b/plugin/src/main/java/lol/pyr/znpcsplus/config/MainConfig.java index 71a1720..61d5d1f 100644 --- a/plugin/src/main/java/lol/pyr/znpcsplus/config/MainConfig.java +++ b/plugin/src/main/java/lol/pyr/znpcsplus/config/MainConfig.java @@ -24,7 +24,10 @@ public interface MainConfig { boolean checkForUpdates(); @ConfKey("debug-enabled") - @ConfComments({"Should debug mode be enabled?", "This is used in development to test various things, you probably don't want to enable this"}) + @ConfComments({ + "Should debug mode be enabled?", + "This is used in development to test various things, you probably don't want to enable this" + }) @DefaultBoolean(false) boolean debugEnabled(); @@ -58,7 +61,11 @@ public interface MainConfig { double lookPropertyDistance(); @ConfKey("tab-hide-delay") - @ConfComments("The ticks delay for NPCs to be hidden from the TAB") + @ConfComments({ + "The amount of time to wait before removing the npc from the player list (aka tab) in ticks", + "If you're on 1.19.2 or above changing this value will have almost no effect since npcs are hidden in tab", + "WARNING: Setting this value too low may cause issues with player npcs spawning" + }) @DefaultInteger(60) int tabHideDelay(); }