aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-18 11:36:02 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-18 11:36:02 +0100
commit8c32d23f14858adcfc740706a9feea79647126c2 (patch)
tree6224ffbbf75e43e22f59e8fd93e54229954a7a6c /src/main/java/at/hannibal2/skyhanni/config/features
parent42610a4dfaf50b6fcee9896a3b9b25837e595201 (diff)
downloadskyhanni-8c32d23f14858adcfc740706a9feea79647126c2.tar.gz
skyhanni-8c32d23f14858adcfc740706a9feea79647126c2.tar.bz2
skyhanni-8c32d23f14858adcfc740706a9feea79647126c2.zip
Added option to change the item scale of SkyMart Coins per Copper list.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/SkyMartConfig.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/SkyMartConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/SkyMartConfig.java
index 7dfd94b34..65eeea93e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/SkyMartConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/SkyMartConfig.java
@@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
+import io.github.moulberry.moulconfig.annotations.ConfigEditorSlider;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class SkyMartConfig {
@@ -19,5 +20,10 @@ public class SkyMartConfig {
public boolean copperPriceAdvancedStats = false;
@Expose
+ @ConfigOption(name = "Item Scale", desc = "Change the size of the items.")
+ @ConfigEditorSlider(minValue = 0.3f, maxValue = 5, minStep = 0.1f)
+ public double itemScale = 1.7;
+
+ @Expose
public Position copperPricePos = new Position(211, 132, false, true);
}