From 0d9b20a20d858c54719aa8691db3ebec221461b8 Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:53:31 -0400 Subject: [PATCH] Update custom unavailable slot comment Co-authored-by: chris --- .../org/geysermc/geyser/configuration/AdvancedConfig.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/org/geysermc/geyser/configuration/AdvancedConfig.java b/core/src/main/java/org/geysermc/geyser/configuration/AdvancedConfig.java index f586b42ae..de3db005f 100644 --- a/core/src/main/java/org/geysermc/geyser/configuration/AdvancedConfig.java +++ b/core/src/main/java/org/geysermc/geyser/configuration/AdvancedConfig.java @@ -62,7 +62,9 @@ public interface AdvancedConfig { @Comment(""" Which item to use to mark unavailable slots in a Bedrock player inventory. Examples of this are the 2x2 crafting grid while in creative, - or custom inventory menus with sizes different from the usual 3x9. A barrier block is the default item.""") + or custom inventory menus with sizes different from the usual 3x9. A barrier block is the default item. + This config option can be set to any Bedrock item identifier. If you want to set this to a custom item, make sure that you specify the item in the following format: "geyser_custom:" + """) @DefaultString("minecraft:barrier") String unusableSpaceBlock();