diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-04-21 21:04:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 21:04:56 +0200 |
commit | ee88cc3a7667b56074061468e9c6790f0325f173 (patch) | |
tree | c6a589121b3f7f00dc96112c705f45bbc0027f82 /src/main | |
parent | 24981e51ebb58408666e06a5e1d099c6a6ca38dd (diff) | |
download | skyhanni-ee88cc3a7667b56074061468e9c6790f0325f173.tar.gz skyhanni-ee88cc3a7667b56074061468e9c6790f0325f173.tar.bz2 skyhanni-ee88cc3a7667b56074061468e9c6790f0325f173.zip |
Fix: Visitor Reward Spelling (#1509)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/RewardWarningConfig.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/RewardWarningConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/RewardWarningConfig.java index f3cafae08..d136894dd 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/RewardWarningConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/RewardWarningConfig.java @@ -17,7 +17,7 @@ import java.util.List; public class RewardWarningConfig { @Expose - @ConfigOption(name = "Notify in Chat", desc = "Send a chat message once you talk to a visitor with reward.") + @ConfigOption(name = "Notify in Chat", desc = "Send a chat message once you talk to a visitor with a reward.") @ConfigEditorBoolean @FeatureToggle public boolean notifyInChat = true; @@ -29,7 +29,7 @@ public class RewardWarningConfig { public boolean showOverName = true; @Expose - @ConfigOption(name = "Block Refusing Reward", desc = "Prevent the refusal of a visitor with reward.") + @ConfigOption(name = "Block Refusing Reward", desc = "Prevent refusing visitors with a reward.") @ConfigEditorBoolean @FeatureToggle public boolean preventRefusing = true; @@ -59,26 +59,26 @@ public class RewardWarningConfig { @Expose @ConfigOption( name = "Coins Per Copper", - desc = "The price to use for the below options.\n" + - "Requires one of the below options to be on." + desc = "The price to use for the options below.\n" + + "Requires at least one of them to be on." ) @ConfigEditorSlider(minValue = 1, maxValue = 50_000, minStep = 250) public int coinsPerCopperPrice = 6_000; @Expose - @ConfigOption(name = "Block Refusing Copper", desc = "Prevent refusing a visitor with a coins per copper lower than the set value.") + @ConfigOption(name = "Block Refusing Copper", desc = "Prevent refusing visitors with a coins per copper lower than the set value.") @ConfigEditorBoolean @FeatureToggle public boolean preventRefusingCopper = false; @Expose - @ConfigOption(name = "Block Accepting Copper", desc = "Prevent accepting a visitor with a coins per copper higher than the set value.") + @ConfigOption(name = "Block Accepting Copper", desc = "Prevent accepting visitors with a coins per copper higher than the set value.") @ConfigEditorBoolean @FeatureToggle public boolean preventAcceptingCopper = false; @Expose - @ConfigOption(name = "Block Refusing New Visitors", desc = "Prevents refusing a visitor you've never completed an offer with.") + @ConfigOption(name = "Block Refusing New Visitors", desc = "Prevent refusing visitors you've never completed an offer with.") @ConfigEditorBoolean @FeatureToggle public boolean preventRefusingNew = true; @@ -86,7 +86,7 @@ public class RewardWarningConfig { @Expose @ConfigOption( name = "Opacity", - desc = "How strong should the offer buttons be grayed out when blocked?" + desc = "How strong the offer buttons should be grayed out when blocked." ) @ConfigEditorSlider( minValue = 0, @@ -96,7 +96,7 @@ public class RewardWarningConfig { public int opacity = 180; @Expose - @ConfigOption(name = "Outline", desc = "Adds a red/green line around the best offer button.") + @ConfigOption(name = "Outline", desc = "Adds a red/green line around the best offer buttons.") @ConfigEditorBoolean public boolean optionOutline = true; } |