From 5f592670446d0dfc5458a962e893cf1b19e1bfa7 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sat, 9 Jul 2022 00:37:17 +0200 Subject: adding a button on pause menu --- src/main/java/at/lorenz/mod/config/Features.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/lorenz/mod/config/Features.java') diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index 43843df40..327aa2bcb 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -68,7 +68,6 @@ public class Features { @ConfigEditorAccordion(id = 1) public boolean filterTypes = false; - @Expose @ConfigOption(name = "HyPixel Hub", desc = "Block messages outside SkyBlock in the HyPixel lobby: player joins, loot boxes, prototype lobby messages, radiating generosity and HyPixel tournaments.") @ConfigEditorBoolean @@ -186,6 +185,11 @@ public class Features { @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles lying on the ground.") @ConfigEditorBoolean public boolean hideExpBottles = false; + + @Expose + @ConfigOption(name = "Config Button", desc = "Adds a button to the pause menu to configure the Lorenz mod.") + @ConfigEditorBoolean + public boolean configButtonOnPause = true; } public static class Test { -- cgit