diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-26 20:17:14 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-05-26 20:17:14 +0200 |
commit | 1bd223a7a026a2810c28f55e205d9bd92c183fba (patch) | |
tree | e0c80754f6744fe2e8d7b7a43d5e86bf940e8fd4 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | d5078e7c8625f1cfca46fddad3a3c1c51d5dd5e1 (diff) | |
download | skyhanni-1bd223a7a026a2810c28f55e205d9bd92c183fba.tar.gz skyhanni-1bd223a7a026a2810c28f55e205d9bd92c183fba.tar.bz2 skyhanni-1bd223a7a026a2810c28f55e205d9bd92c183fba.zip |
Added City Project Features
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index 5643892ca..28d7093c0 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -364,6 +364,27 @@ public class Misc { public boolean inventoryNumbers = false; } + @ConfigOption(name = "City Project", desc = "") + @Accordion + @Expose + public CityProject cityProject = new CityProject(); + + public static class CityProject { + + @Expose + @ConfigOption(name = "Show Materials", desc = "Show materials needed for contributing to the City Project.") + @ConfigEditorBoolean + public boolean showMaterials = true; + + @Expose + @ConfigOption(name = "Show Ready", desc = "Mark Contributions that are ready to participate.") + @ConfigEditorBoolean + public boolean showReady = true; + + @Expose + public Position pos = new Position(394, 124, false, true); + } + @Expose @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience orbs lying on the ground.") @ConfigEditorBoolean |