aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorHiZe_ <superhize@hotmail.com>2023-07-11 10:47:32 +0200
committerGitHub <noreply@github.com>2023-07-11 10:47:32 +0200
commit2e28181c5808edd76114ff035de99bd4b1ed0e40 (patch)
tree673aea28adf20fc6112b48d80d49a6a30979f969 /src/main/java/at/hannibal2/skyhanni/config/features
parent635d6cee39cf710286364c47d3419bd6e923a513 (diff)
downloadskyhanni-2e28181c5808edd76114ff035de99bd4b1ed0e40.tar.gz
skyhanni-2e28181c5808edd76114ff035de99bd4b1ed0e40.tar.bz2
skyhanni-2e28181c5808edd76114ff035de99bd4b1ed0e40.zip
Merge pull request #306
* added burger buff to price * removed burger buff line * added cute burger icon * forgot cute icon if size is 1 * config name * Code cleanup * Code cleanup * Code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
index 62f551490..0ab3b06f2 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
@@ -509,7 +509,20 @@ public class RiftConfig {
public boolean highlightGuide = true;
@Expose
- @ConfigOption(name = "Show Motes Price", desc = "Show the Motes NPC price in the item lore.")
- @ConfigEditorBoolean
- public boolean showMotesPrice = true;
+ @ConfigOption(name = "Motes Sell Price", desc = "")
+ @Accordion
+ public Motes motes = new Motes();
+
+ public static class Motes {
+
+ @Expose
+ @ConfigOption(name = "Show Motes Price", desc = "Show the Motes NPC price in the item lore.")
+ @ConfigEditorBoolean
+ public boolean showPrice = true;
+
+ @Expose
+ @ConfigOption(name = "Burger Stacks", desc = "Set your McGrubber's burger stacks.")
+ @ConfigEditorSlider(minStep = 1, minValue = 0, maxValue = 5)
+ public int burgerStacks = 0;
+ }
}