From 2e28181c5808edd76114ff035de99bd4b1ed0e40 Mon Sep 17 00:00:00 2001 From: HiZe_ Date: Tue, 11 Jul 2023 10:47:32 +0200 Subject: 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 --- .../skyhanni/config/features/RiftConfig.java | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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; + } } -- cgit