From bd6d46dac8f6ef489f1a11bffa67356a6727d7c2 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Fri, 29 Dec 2023 18:41:55 +1100 Subject: sack item amount (#854) Show sack item amount to the visitor shopping list. #854 --- .../skyhanni/config/features/garden/visitor/NeedsConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/NeedsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/NeedsConfig.java index b60b6207f..002b44a16 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/NeedsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/NeedsConfig.java @@ -32,6 +32,12 @@ public class NeedsConfig { @ConfigEditorBoolean public boolean showPrice = true; + @Expose + @ConfigOption(name = "Show Sack Count", desc = "Show the amount of this item that you already have in your sacks. " + + "§eOnly updates on sack change messages.") + @ConfigEditorBoolean + public boolean showSackCount = true; + @Expose @ConfigOption(name = "Item Preview", desc = "Show the base type for the required items next to new visitors. §cNote that some visitors may require any crop.") @ConfigEditorBoolean -- cgit