From 2a6dbf5407b5772db3ac0d203da3cdfac13d69d5 Mon Sep 17 00:00:00 2001 From: Roman / Linnea Gräf Date: Thu, 3 Nov 2022 11:34:09 +0100 Subject: Add fully Hypixel-Rule compliant glowing mush highlighter (#266) --- .../io/github/moulberry/notenoughupdates/options/NEUConfig.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java index 35f219e0..9c4343cb 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java @@ -34,6 +34,7 @@ import io.github.moulberry.notenoughupdates.miscgui.GuiEnchantColour; import io.github.moulberry.notenoughupdates.miscgui.GuiInvButtonEditor; import io.github.moulberry.notenoughupdates.miscgui.NEUOverlayPlacements; import io.github.moulberry.notenoughupdates.options.customtypes.NEUDebugFlag; +import io.github.moulberry.notenoughupdates.options.seperateSections.WorldConfig; import io.github.moulberry.notenoughupdates.options.seperateSections.AHGraph; import io.github.moulberry.notenoughupdates.options.seperateSections.AHTweaks; import io.github.moulberry.notenoughupdates.options.seperateSections.AccessoryBag; @@ -336,6 +337,13 @@ public class NEUConfig extends Config { ) public PetOverlay petOverlay = new PetOverlay(); + @Expose + @Category( + name = "World Renderer", + desc = "In World Renderers" + ) + public WorldConfig world = new WorldConfig(); + @Expose @Category( name = "AH Tweaks", -- cgit