diff options
| author | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 23:34:20 +0200 |
|---|---|---|
| committer | Lorenz <ESs95s3P5z8Pheb> | 2022-07-08 23:34:20 +0200 |
| commit | 380d322e21972feaf7e26114b8b3326592007a3b (patch) | |
| tree | 82d644a99141b8d62af2e5a999dcbbfa77b0f520 /src/main/java/at/lorenz/mod/config/Features.java | |
| parent | ef8245687b9684c6770256f0022247290ec868b0 (diff) | |
| download | SkyHanni-380d322e21972feaf7e26114b8b3326592007a3b.tar.gz SkyHanni-380d322e21972feaf7e26114b8b3326592007a3b.tar.bz2 SkyHanni-380d322e21972feaf7e26114b8b3326592007a3b.zip | |
add hide exp bottles support
Diffstat (limited to 'src/main/java/at/lorenz/mod/config/Features.java')
| -rw-r--r-- | src/main/java/at/lorenz/mod/config/Features.java | 7 |
1 files changed, 6 insertions, 1 deletions
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); } |
