summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java21
1 files changed, 21 insertions, 0 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 af531667f..48882f49e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
@@ -566,6 +566,27 @@ public class RiftConfig {
@ConfigOption(name = "Burger Stacks", desc = "Set your McGrubber's burger stacks.")
@ConfigEditorSlider(minStep = 1, minValue = 0, maxValue = 5)
public int burgerStacks = 0;
+
+ @Expose
+ @ConfigOption(name = "Inventory value", desc = "")
+ @Accordion
+ public InventoryValue inventoryValue = new InventoryValue();
+
+ public static class InventoryValue {
+ @Expose
+ @ConfigOption(name = "Inventory value", desc = "Show total Motes NPC price for the current opened inventory.")
+ @ConfigEditorBoolean
+ public boolean enabled = true;
+
+ @Expose
+ @ConfigOption(name = "Number format type", desc = "Short: 1.2M\n" +
+ "Long: 1,200,000")
+ @ConfigEditorDropdown(values = {"Short", "Long"})
+ public int formatType = 0;
+
+ @Expose
+ public Position position = new Position(126, 156, false, true);
+ }
}
@Expose