diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/CrimsonIsleConfig.java | 5 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/nether/QuestItemHelper.kt | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CrimsonIsleConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/CrimsonIsleConfig.java index 37888a1c2..b9d00f8cd 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/CrimsonIsleConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CrimsonIsleConfig.java @@ -143,8 +143,9 @@ public class CrimsonIsleConfig { } @Expose - @ConfigOption(name = "Fetch Quest from Sacks", desc = "Gets the items from your sacks when you open a 'item fetch' daily quest in the town board.") + @ConfigOption(name = "Quest Item Helper", desc = "When you open the fetch item quest in the town board, " + + "it shows a clickable chat message that will grab the items needed from the sacks.") @ConfigEditorBoolean @FeatureToggle - public boolean questdailyFetchItemsFromSacks = false; + public boolean questItemHelper = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/QuestItemHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/QuestItemHelper.kt index e7c5b0950..dc933dd20 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/QuestItemHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/QuestItemHelper.kt @@ -30,7 +30,7 @@ class QuestItemHelper { questItem = group("name") questAmount = group("amount").toInt() LorenzUtils.clickableChat( - "§e[SkyHanni] Get x$questAmount $questItem from sacks", + "§e[SkyHanni] Click here go grab x$questAmount $questItem from sacks!", "gfs $questItem $questAmount" ) lastSentMessage = SimpleTimeMark.now() @@ -39,5 +39,5 @@ class QuestItemHelper { } } - fun isEnabled() = IslandType.CRIMSON_ISLE.isInIsland() && config.questdailyFetchItemsFromSacks + fun isEnabled() = IslandType.CRIMSON_ISLE.isInIsland() && config.questItemHelper } |