diff options
author | J10a1n15 <45315647+j10a1n15@users.noreply.github.com> | 2024-04-25 10:29:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 10:29:15 +0200 |
commit | 1d70f88cf8387ab214523568b34f0e532ee070b6 (patch) | |
tree | d69fcc4e579271d1710a7624a50859a722511ade /src/main/java/at/hannibal2/skyhanni/config | |
parent | ec1e6bfd635311d940ee9e0dc80832c64021aa3e (diff) | |
download | skyhanni-1d70f88cf8387ab214523568b34f0e532ee070b6.tar.gz skyhanni-1d70f88cf8387ab214523568b34f0e532ee070b6.tar.bz2 skyhanni-1d70f88cf8387ab214523568b34f0e532ee070b6.zip |
Feature: Mineshaft click to gfs ascension rope (#1542)
Co-authored-by: hannibal2 <24389977+hannibal002@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningNotificationsConfig.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningNotificationsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningNotificationsConfig.java index 0c1461183..30394ba34 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningNotificationsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/MiningNotificationsConfig.java @@ -43,4 +43,13 @@ public class MiningNotificationsConfig { @ConfigOption(name = "Cold Threshold", desc = "Change when the Cold notification gets triggered.") @ConfigEditorSlider(minValue = 1, maxValue = 100, minStep = 1) public Property<Integer> coldThreshold = Property.of(50); + + @Expose + @ConfigOption( + name = "Get Ascension Rope", + desc = "Click on a chat message to get an Ascension Rope when you're at 90 Cold and in the §bMineshaft§7. " + + "§cOnly works if you have an Ascension Rope in your sacks." + ) + @ConfigEditorBoolean + public boolean getAscensionRope = true; } |