From 380d322e21972feaf7e26114b8b3326592007a3b Mon Sep 17 00:00:00 2001 From: Lorenz Date: Fri, 8 Jul 2022 23:34:20 +0200 Subject: add hide exp bottles support --- src/main/java/at/lorenz/mod/config/Features.java | 7 ++++++- 1 file changed, 6 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 97f9be3d8..bb9939c13 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -154,6 +154,11 @@ public class Features { @ConfigOption(name = "Pet Display Position", desc = "") @ConfigEditorButton(runnableId = "petDisplay", buttonText = "Edit") public Position petDisplayPos = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "Exp Bottles", desc = "Hides all the Exp bottles on the ground.") + @ConfigEditorBoolean + public boolean hideExpBottles = false; } public static class Test { @@ -164,7 +169,7 @@ public class Features { public boolean enabled = false; @Expose - @ConfigOption(name = "Test Location", desc = "testPos") + @ConfigOption(name = "Test Location", desc = "") @ConfigEditorButton(runnableId = "testPos", buttonText = "Edit") public Position testPos = new Position(10, 10, false, true); } -- cgit