diff --git a/lophine-server/src/main/java/fun/bm/lophine/config/modules/misc/RedStoneConfig.java b/lophine-server/src/main/java/fun/bm/lophine/config/modules/misc/RedStoneConfig.java index 23d4048..3a200fa 100644 --- a/lophine-server/src/main/java/fun/bm/lophine/config/modules/misc/RedStoneConfig.java +++ b/lophine-server/src/main/java/fun/bm/lophine/config/modules/misc/RedStoneConfig.java @@ -3,12 +3,15 @@ package fun.bm.lophine.config.modules.misc; import me.earthme.luminol.config.EnumConfigCategory; import me.earthme.luminol.config.IConfigModule; import me.earthme.luminol.config.flags.ConfigInfo; +import me.earthme.luminol.config.flags.TransformedConfig; public class RedStoneConfig implements IConfigModule { - @ConfigInfo(baseName = "allow_skip_cooldown", comments = + @TransformedConfig(name = "allow_skip_cooldown", category = {"misc", "redstone"}) + @ConfigInfo(baseName = "shears_rotate", comments = """ Allows you to use the Shears to right-click to rotate the block.""") public static boolean shears = false; + @Override public EnumConfigCategory getCategory() { return EnumConfigCategory.MISC;