From efc71b6847f252cccd0ccf536a6db6e9fe6fad96 Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Wed, 29 May 2024 17:36:09 +1000 Subject: Get ascension rope at selectable cold level (#1905) --- .../config/features/mining/MiningNotificationsConfig.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 30394ba34..f5a1d0b76 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 @@ -47,9 +47,17 @@ public class MiningNotificationsConfig { @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. " + + desc = "Click on a chat message to get an Ascension Rope when you're at a certain amount of Cold and in the §bMineshaft§7. " + "§cOnly works if you have an Ascension Rope in your sacks." ) @ConfigEditorBoolean public boolean getAscensionRope = true; + + @Expose + @ConfigOption( + name = "Cold Amount to Show Message", + desc = "Customise the amount of Cold you need to have to get the Ascension Rope message." + ) + @ConfigEditorSlider(minValue = 1, maxValue = 100, minStep = 1) + public int coldAmount = 90; } -- cgit