aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorAbsterge <106860128+Absterge@users.noreply.github.com>2023-09-30 00:09:21 +0100
committerGitHub <noreply@github.com>2023-09-30 01:09:21 +0200
commit509658c655e570a6c2db04eaecdcec4403e13f39 (patch)
tree25fa8df0daf366f70413d52b5e24f06a74b9e3cb /src/main/java
parentb66076544f322159308570ae8c238d9f49a8b5d2 (diff)
downloadskyhanni-509658c655e570a6c2db04eaecdcec4403e13f39.tar.gz
skyhanni-509658c655e570a6c2db04eaecdcec4403e13f39.tar.bz2
skyhanni-509658c655e570a6c2db04eaecdcec4403e13f39.zip
Minor Config Description Changes (#520)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/BazaarConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java12
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/CombatConfig.java12
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java10
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java14
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java16
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java18
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java14
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiningConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java12
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java36
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java52
15 files changed, 108 insertions, 108 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/BazaarConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/BazaarConfig.java
index 8f60e5b28..b02c0ef40 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/BazaarConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/BazaarConfig.java
@@ -36,7 +36,7 @@ public class BazaarConfig {
public boolean cancelledBuyOrderClipboard = false;
@Expose
- @ConfigOption(name = "Price Website", desc = "Adds a button to the bazaar product inventory that will open the item page in §cskyblock.bz§7.")
+ @ConfigOption(name = "Price Website", desc = "Adds a button to the Bazaar product inventory that will open the item page in §cskyblock.bz§7.")
@ConfigEditorBoolean
@FeatureToggle
public boolean openPriceWebsite = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java
index 3c0e0e324..b855eabd4 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/ChatConfig.java
@@ -72,7 +72,7 @@ public class ChatConfig {
public boolean winterGift = false;
@Expose
- @ConfigOption(name = "Powder Mining", desc = "Hide messages while opening chests in Crystal Hollows. " +
+ @ConfigOption(name = "Powder Mining", desc = "Hide messages while opening chests in the Crystal Hollows. " +
"(Except powder numbers over 1k, Prehistoric Egg and Automaton Parts)")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
@@ -94,7 +94,7 @@ public class ChatConfig {
public boolean watchDog = true;
@Expose
- @ConfigOption(name = "Profile Join", desc = "Hide 'You are playing on profile' and 'Profile ID' chat messages")
+ @ConfigOption(name = "Profile Join", desc = "Hide 'You are playing on profile' and 'Profile ID' chat messages.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
@FeatureToggle
@@ -121,7 +121,7 @@ public class ChatConfig {
public boolean playerRankHider = false;
@Expose
- @ConfigOption(name = "Chat Filter", desc = "Scan messages sent by players for blacklisted words and grey out the message if any are found.")
+ @ConfigOption(name = "Chat Filter", desc = "Scan messages sent by players for blacklisted words and gray out the message if any are found.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
@FeatureToggle
@@ -134,7 +134,7 @@ public class ChatConfig {
public boolean dungeonMessages = true;
@Expose
- @ConfigOption(name = "Dungeon Boss Messages", desc = "Hide messages from the Watcher and bosses in the dungeon.")
+ @ConfigOption(name = "Dungeon Boss Messages", desc = "Hide messages from the Watcher and bosses in the Dungeon.")
@ConfigEditorBoolean
@FeatureToggle
public boolean dungeonBossMessages = false;
@@ -179,8 +179,8 @@ public class ChatConfig {
@ConfigOption(
name = "Translator",
desc = "Click on a message to translate it into English. " +
- "Use /shcopytranslation to get the translation from English. " +
- "Translation is not guaranteed to be 100% accurate."
+ "Use §e/shcopytranslation§7 to get the translation from English. " +
+ "§cTranslation is not guaranteed to be 100% accurate."
)
@ConfigEditorBoolean
@FeatureToggle
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CombatConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/CombatConfig.java
index fafef0e6c..58bd6fe26 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/CombatConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/CombatConfig.java
@@ -114,7 +114,7 @@ public class CombatConfig {
public static class EnderSlayerConfig {
@Expose
- @ConfigOption(name = "Laser phase timer", desc = "Show a timer when the laser phase will end.")
+ @ConfigOption(name = "Laser Phase Timer", desc = "Show a timer when the laser phase will end.")
@ConfigEditorBoolean
public boolean laserPhaseTimer = false;
@@ -131,7 +131,7 @@ public class CombatConfig {
public static class VampireSlayerConfig {
@Expose
- @ConfigOption(name = "HP until Steak", desc = "Show the amount of HP missing until the steak can be used on the Vampire Slayer on top of the boss.")
+ @ConfigOption(name = "HP Until Steak", desc = "Show the amount of HP missing until the Steak can be used on the Vampire Slayer on top of the boss.")
@ConfigEditorBoolean
public boolean hpTillSteak = false;
@@ -201,7 +201,7 @@ public class CombatConfig {
@ConfigOption(name = "§eText Formatting Info", desc = "§e%session% §ris §e§lalways §rreplaced with\n" +
"§7the count for your current session.\n" +
"§7Reset when restarting the game.\n" +
- "§7You can use §e&Z §7color code to use SBA chroma")
+ "§7You can use §e&Z §7color code to use SBA chroma.")
@ConfigEditorInfoText
public boolean formatInfo = false;
@@ -493,7 +493,7 @@ public class CombatConfig {
@Expose
@ConfigOption(name = "Summoning Soul Display", desc = "Show the name of dropped Summoning Souls laying on the ground. " +
- "§cNot working in dungeons if Skytils' 'Hide Non-Starred Mobs Nametags' feature is enabled!")
+ "§cNot working in Dungeons if Skytils' 'Hide Non-Starred Mobs Nametags' feature is enabled!")
@ConfigEditorBoolean
@FeatureToggle
public boolean summoningSoulDisplay = false;
@@ -608,7 +608,7 @@ public class CombatConfig {
public boolean endermanTeleportationHider = true;
@Expose
- @ConfigOption(name = "Arachne Minis Hider", desc = "Hides the nametag above arachne minis.")
+ @ConfigOption(name = "Arachne Minis Hider", desc = "Hides the nametag above Arachne minis.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideNameTagArachneMinis = true;
@@ -646,7 +646,7 @@ public class CombatConfig {
public int displayType = 0;
@Expose
- @ConfigOption(name = "Hide maxed", desc = "Hide maxed mobs")
+ @ConfigOption(name = "Hide maxed", desc = "Hide maxed mobs.")
@ConfigEditorBoolean
public boolean hideMaxed = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java
index 7d5633e51..40248d74d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsConfig.java
@@ -50,7 +50,7 @@ public class CommandsConfig {
public boolean vipVisits = true;
@Expose
- @ConfigOption(name = "/gfs Sack", desc = "Tab complete /gfs sack items.")
+ @ConfigOption(name = "/gfs Sack", desc = "Tab complete §e/gfs §7sack items.")
@ConfigEditorBoolean
@FeatureToggle
public boolean gfsSack = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java
index baeae63da..01edf0b4d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java
@@ -46,13 +46,13 @@ public class DevConfig {
public boolean modMenuLog = false;
@Expose
- @ConfigOption(name = "Show internal name", desc = "Show internal names in item lore.")
+ @ConfigOption(name = "Show Internal Name", desc = "Show internal names in item lore.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showInternalName = false;
@Expose
- @ConfigOption(name = "Show empty internal names", desc = "Shows internal name even for items with none.")
+ @ConfigOption(name = "Show Empty Internal Names", desc = "Shows internal name even for items with none.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showEmptyNames = false;
@@ -76,19 +76,19 @@ public class DevConfig {
public boolean showNpcPrice = false;
@Expose
- @ConfigOption(name = "Show item UUID", desc = "Show the Unique Identifier of items in the lore.")
+ @ConfigOption(name = "Show Item UUID", desc = "Show the Unique Identifier of items in the lore.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showItemUuid = false;
@Expose
- @ConfigOption(name = "Copy NBT data", desc = "Copies compressed NBT data on key press in a GUI")
+ @ConfigOption(name = "Copy NBT Data", desc = "Copies compressed NBT data on key press in a GUI")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
@ConfigAccordionId(id = 0)
public int copyNBTDataCompressed = Keyboard.KEY_NONE;
@Expose
- @ConfigOption(name = "Copy Rng Meter", desc = "Copies internal names and maxed XP needed from rng meter inventories as json to clipboard.")
+ @ConfigOption(name = "Copy RNG Meter", desc = "Copies internal names and maxed XP needed from RNG meter inventories as json to clipboard.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean copyRngMeter = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
index 48e95c33b..c4c241ad0 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/DungeonConfig.java
@@ -40,7 +40,7 @@ public class DungeonConfig {
public boolean cleanEnd = false;
@Expose
- @ConfigOption(name = "Clean Ending", desc = "After the last dungeon boss has died, all entities and " +
+ @ConfigOption(name = "Clean Ending", desc = "After the last Dungeon boss has died, all entities and " +
"particles are no longer displayed and the music stops playing, but the loot chests are still displayed.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
@@ -48,7 +48,7 @@ public class DungeonConfig {
public boolean cleanEndToggle = false;
@Expose
- @ConfigOption(name = "Ignore Guardians", desc = "Ignore F3 and M3 guardians from the clean end feature when " +
+ @ConfigOption(name = "Ignore Guardians", desc = "Ignore F3 and M3 Guardians from the clean end feature when " +
"sneaking. Makes it easier to kill them after the boss died already. Thanks Hypixel.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
@@ -61,13 +61,13 @@ public class DungeonConfig {
public boolean damageSplashBoss = false;
@Expose
- @ConfigOption(name = "Highlight Deathmites", desc = "Highlight deathmites in Dungeon in red color.")
+ @ConfigOption(name = "Highlight Deathmites", desc = "Highlight Deathmites in Dungeons in red color.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlightDeathmites = true;
@Expose
- @ConfigOption(name = "Highlight Teammates", desc = "Highlight dungeon teammates with a glowing outline.")
+ @ConfigOption(name = "Highlight Teammates", desc = "Highlight Dungeon teammates with a glowing outline.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlightTeammates = true;
@@ -120,14 +120,14 @@ public class DungeonConfig {
public boolean hideSkeletonSkull = true;
@Expose
- @ConfigOption(name = "Hide Healer Orbs", desc = "Hides the damage, ability damage and defensive orbs that spawn when the healer kills mobs.")
+ @ConfigOption(name = "Hide Healer Orbs", desc = "Hides the damage, ability damage and defensive orbs that spawn when the Healer kills mobs.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 3)
@FeatureToggle
public boolean hideHealerOrbs = false;
@Expose
- @ConfigOption(name = "Hide Healer Fairy", desc = "Hide the golden fairy that follows the Healer in Dungeons.")
+ @ConfigOption(name = "Hide Healer Fairy", desc = "Hide the Golden Fairy that follows the Healer in Dungeons.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 3)
@FeatureToggle
@@ -177,7 +177,7 @@ public class DungeonConfig {
public static class TabListConfig {
@Expose
- @ConfigOption(name = "Colored Class Level", desc = "Color class levels in tab list. (Also hides rank colors and emblems, because who needs that in dungeon anyway?)")
+ @ConfigOption(name = "Colored Class Level", desc = "Color class levels in tab list. (Also hides rank colors and emblems, because who needs that in Dungeons anyway?)")
@ConfigEditorBoolean
@FeatureToggle
public boolean coloredClassLevel = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
index adb20dc3d..0e895f6b3 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
@@ -172,12 +172,12 @@ public class EventConfig {
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Focus", desc = "Hide other waypoints when your Party finds a Inquisitor.")
+ @ConfigOption(name = "Focus", desc = "Hide other waypoints when your Party finds an Inquisitor.")
@ConfigEditorBoolean
public boolean focusInquisitor = false;
@Expose
- @ConfigOption(name = "Instant Share", desc = "Share the waypoint as soon as you find a Inquisitor. As alternative, you can share it only via key press")
+ @ConfigOption(name = "Instant Share", desc = "Share the waypoint as soon as you find an Inquisitor. As an alternative, you can share it only via key press.")
@ConfigEditorBoolean
public boolean instantShare = true;
@@ -193,7 +193,7 @@ public class EventConfig {
}
@Expose
- @ConfigOption(name = "Griffin Pet Warning", desc = "Warn when holding an Ancestral Spade if a Griffin pet is not equipped.")
+ @ConfigOption(name = "Griffin Pet Warning", desc = "Warn when holding an Ancestral Spade if a Griffin Pet is not equipped.")
@ConfigEditorBoolean
@FeatureToggle
public boolean petWarning = true;
@@ -257,13 +257,13 @@ public class EventConfig {
public boolean onlyInCave = true;
@Expose
- @ConfigOption(name = "Show as drops", desc = "Multiplies the numbers on the display by the base drop. \n" +
+ @ConfigOption(name = "Show as Drops", desc = "Multiplies the numbers on the display by the base drop. \n" +
"E.g. 3 Ice Bait -> 48 Ice Bait")
@ConfigEditorBoolean
public boolean showAsDrops = false;
@Expose
- @ConfigOption(name = "Hide Chat messages", desc = "Hides the chat messages from Frozen Treasures.")
+ @ConfigOption(name = "Hide Chat Messages", desc = "Hides the chat messages from Frozen Treasures.")
@ConfigEditorBoolean
public boolean hideMessages = false;
@@ -319,7 +319,7 @@ public class EventConfig {
public static class Century {
- @ConfigOption(name = "Enable Active Player Timer", desc = "Show a HUD telling you how much longer you have to wait to be eligible for another free ticket")
+ @ConfigOption(name = "Enable Active Player Timer", desc = "Show a HUD telling you how much longer you have to wait to be eligible for another free ticket.")
@Expose
@ConfigEditorBoolean
@FeatureToggle
@@ -328,10 +328,10 @@ public class EventConfig {
@Expose
public Position activeTimerPosition = new Position(100, 100, false, true);
- @ConfigOption(name = "Enable Active Player Alert", desc = "Loudly proclaim when it is time to break some wheat")
+ @ConfigOption(name = "Enable Active Player Alert", desc = "Loudly proclaim when it is time to break some wheat.")
@Expose
@ConfigEditorBoolean
public boolean enableActiveAlert = false;
}
-} \ No newline at end of file
+}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
index 9aad62a02..444021146 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/FishingConfig.java
@@ -51,7 +51,7 @@ public class FishingConfig {
public int design = 0;
@Expose
- @ConfigOption(name = "Show total amount", desc = "Show total amount of all rarities at the end of the chat message.")
+ @ConfigOption(name = "Show Total Amount", desc = "Show total amount of all rarities at the end of the chat message.")
@ConfigEditorBoolean
public boolean totalAmount = false;
@@ -96,14 +96,14 @@ public class FishingConfig {
public boolean thunderSpark = false;
@Expose
- @ConfigOption(name = "Thunder Spark Highlight", desc = "Highlight Thunder Sparks after killing a Thunder")
+ @ConfigOption(name = "Thunder Spark Highlight", desc = "Highlight Thunder Sparks after killing a Thunder.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
@FeatureToggle
public boolean thunderSparkHighlight = false;
@Expose
- @ConfigOption(name = "Thunder Spark Color", desc = "Color of the Thunder Sparks")
+ @ConfigOption(name = "Thunder Spark Color", desc = "Color of the Thunder Sparks.")
@ConfigEditorColour
@ConfigAccordionId(id = 1)
public String thunderSparkColor = "0:255:255:255:255";
@@ -220,13 +220,13 @@ public class FishingConfig {
public static class FishingHookDisplay {
@Expose
- @ConfigOption(name = "Enabled", desc = "Display the hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen.")
+ @ConfigOption(name = "Enabled", desc = "Display the Hypixel timer until the fishing hook can be pulled out of the water/lava, only bigger and on your screen.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Hide Armor Stand", desc = "Hide the original armor stand from hypixel when the Skyhanni display is enabled.")
+ @ConfigOption(name = "Hide Armor Stand", desc = "Hide the original armor stand from Hypixel when the SkyHanni display is enabled.")
@ConfigEditorBoolean
public boolean hideArmorStand = true;
@@ -235,7 +235,7 @@ public class FishingConfig {
}
@Expose
- @ConfigOption(name = "Highlight Rare", desc = "Highlight rare sea creatures in blue color.")
+ @ConfigOption(name = "Highlight Rare", desc = "Highlight Rare Sea Creatures in blue color.")
@ConfigEditorBoolean
@FeatureToggle
public boolean rareSeaCreatureHighlight = false;
@@ -243,7 +243,7 @@ public class FishingConfig {
@Expose
@ConfigOption(
name = "Shark Fish Counter",
- desc = "Counts how many sharks have been caught."
+ desc = "Counts how many Sharks have been caught."
)
@ConfigEditorBoolean
@FeatureToggle
@@ -253,13 +253,13 @@ public class FishingConfig {
public Position sharkFishCounterPos = new Position(10, 10, false, true);
@Expose
- @ConfigOption(name = "Shorten Fishing Message", desc = "Shortens the chat message that says what type of sea creature you have fished.")
+ @ConfigOption(name = "Shorten Fishing Message", desc = "Shortens the chat message that says what type of Sea Creature you have fished.")
@ConfigEditorBoolean
@FeatureToggle
public boolean shortenFishingMessage = false;
@Expose
- @ConfigOption(name = "Compact Double Hook", desc = "Adds Double Hook to the sea creature chat message instead of in a previous line.")
+ @ConfigOption(name = "Compact Double Hook", desc = "Adds Double Hook to the Sea Creature chat message instead of in a previous line.")
@ConfigEditorBoolean
@FeatureToggle
public boolean compactDoubleHook = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
index 370254665..ed365809c 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java
@@ -16,7 +16,7 @@ import org.lwjgl.input.Keyboard;
public class GUIConfig {
- @ConfigOption(name = "Edit GUI Locations", desc = "Change the position of SkyHanni's overlays")
+ @ConfigOption(name = "Edit GUI Locations", desc = "Change the position of SkyHanni's overlays.")
@ConfigEditorButton(buttonText = "Edit")
public Runnable positions = GuiEditManager::openGuiPositionEditor;
@@ -26,12 +26,12 @@ public class GUIConfig {
public int keyBindOpen = Keyboard.KEY_NONE;
@Expose
- @ConfigOption(name = "Global GUI scale", desc = "Globally scale all SkyHanni GUIs")
+ @ConfigOption(name = "Global GUI Scale", desc = "Globally scale all SkyHanni GUIs.")
@ConfigEditorSlider(minValue = 0.1F, maxValue = 10, minStep = 0.05F)
public float globalScale = 1F;
@Expose
- @ConfigOption(name = "Custom Text box", desc = "")
+ @ConfigOption(name = "Custom Text Box", desc = "")
@Accordion
public TextBoxConfig customTextBox = new TextBoxConfig();
@@ -68,7 +68,7 @@ public class GUIConfig {
public Position realTimePosition = new Position(10, 10, false, true);
@Expose
- @ConfigOption(name = "Tps Display", desc = "Show the TPS of the current server, like in Soopy.")
+ @ConfigOption(name = "TPS Display", desc = "Show the TPS of the current server, like in Soopy.")
@ConfigEditorBoolean
@FeatureToggle
public boolean tpsDisplay = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java
index af2de3bdc..6d73bd6af 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java
@@ -328,7 +328,7 @@ public class GardenConfig {
public boolean displayIcons = false;
@Expose
- @ConfigOption(name = "Only On Barn Plot", desc = "Only shows the overlay while on the Barn plot.")
+ @ConfigOption(name = "Only on Barn Plot", desc = "Only shows the overlay while on the Barn plot.")
@ConfigEditorBoolean
public boolean onlyOnBarn = true;
@@ -478,7 +478,7 @@ public class GardenConfig {
// TODO moulconfig runnable support
@Expose
- @ConfigOption(name = "Only show top", desc = "Only show the top # crops.")
+ @ConfigOption(name = "Only Show Top", desc = "Only show the top # crops.")
@ConfigEditorSlider(
minValue = 1,
maxValue = 10,
@@ -488,7 +488,7 @@ public class GardenConfig {
public int cropMilestoneShowOnlyBest = 10;
@Expose
- @ConfigOption(name = "Extend top list", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.")
+ @ConfigOption(name = "Extend Top List", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 7)
public boolean cropMilestoneShowCurrent = true;
@@ -861,7 +861,7 @@ public class GardenConfig {
public boolean moneyPerHour = false;
@Expose
- @ConfigOption(name = "Show money per Hour",
+ @ConfigOption(name = "Show Money per Hour",
desc = "Displays the money per hour YOU get with YOUR crop/minute value when selling the item to bazaar. " +
"Supports Bountiful, Mushroom Cow Perk, Armor Crops and Dicer Drops. Their toggles are below.")
@ConfigEditorBoolean
@@ -871,7 +871,7 @@ public class GardenConfig {
// TODO moulconfig runnable support
@Expose
- @ConfigOption(name = "Only show top", desc = "Only show the best # items.")
+ @ConfigOption(name = "Only Show Top", desc = "Only show the best # items.")
@ConfigEditorSlider(
minValue = 1,
maxValue = 25,
@@ -881,7 +881,7 @@ public class GardenConfig {
public int moneyPerHourShowOnlyBest = 5;
@Expose
- @ConfigOption(name = "Extend top list", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.")
+ @ConfigOption(name = "Extend Top List", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 13)
public boolean moneyPerHourShowCurrent = true;
@@ -1146,7 +1146,7 @@ public class GardenConfig {
@Expose
@ConfigOption(
- name = "Composter warning",
+ name = "Composter Warning",
desc = "Warn when the Composter gets close to empty, even outside Garden."
)
@ConfigEditorBoolean
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java
index fe5febb5a..eb3778240 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java
@@ -256,13 +256,13 @@ public class InventoryConfig {
public int nameLength = 100;
@Expose
- @ConfigOption(name = "Highlight slot", desc = "Highlight slot where the item is when you hover over it in the display.")
+ @ConfigOption(name = "Highlight Slot", desc = "Highlight slot where the item is when you hover over it in the display.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enableHighlight = true;
@Expose
- @ConfigOption(name = "Highlight color", desc = "Choose the highlight color.")
+ @ConfigOption(name = "Highlight Color", desc = "Choose the highlight color.")
@ConfigEditorColour
public String highlightColor = "0:249:0:255:88";
@@ -359,7 +359,7 @@ public class InventoryConfig {
@Expose
@ConfigOption(
- name = "Item number",
+ name = "Item Number",
desc = "Showing the item number as a stack size for these items."
)
@ConfigEditorDraggableList(
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiningConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiningConfig.java
index c93068248..38ac5f1d3 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiningConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiningConfig.java
@@ -104,7 +104,7 @@ public class MiningConfig {
public Position kingTalismanHelperPos = new Position(-400, 220, false, true);
@Expose
- @ConfigOption(name = "Names in Core", desc = "Show the names of the 4 areas while in the center of Crystal Hollows.")
+ @ConfigOption(name = "Names in Core", desc = "Show the names of the 4 areas while in the center of the Crystal Hollows.")
@ConfigEditorBoolean
@FeatureToggle
public boolean crystalHollowsNamesInCore = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
index 010ff8d5b..53914713e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
@@ -55,7 +55,7 @@ public class MiscConfig {
public boolean showAlways = false;
@Expose
- @ConfigOption(name = "Dragon Egg", desc = "For an Golden Dragon Egg, show progress to level 100 instead of 200.")
+ @ConfigOption(name = "Dragon Egg", desc = "For a Golden Dragon Egg, show progress to level 100 instead of 200.")
@ConfigEditorBoolean
public boolean showGoldenDragonEgg = true;
@@ -98,7 +98,7 @@ public class MiscConfig {
public boolean nonGodPotEffectDisplay = false;
@Expose
- @ConfigOption(name = "Show Mixins", desc = "Include god pot mixins in the Non God Pot Effects display.")
+ @ConfigOption(name = "Show Mixins", desc = "Include God Pot mixins in the Non God Pot Effects display.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 5)
@FeatureToggle
@@ -180,7 +180,7 @@ public class MiscConfig {
public int estimatedItemValueHotkey = Keyboard.KEY_NONE;
@Expose
- @ConfigOption(name = "Show always", desc = "Ignore the hotkey and always display the item value.")
+ @ConfigOption(name = "Show Always", desc = "Ignore the hotkey and always display the item value.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 11)
public boolean estimatedIemValueAlwaysEnabled = true;
@@ -310,7 +310,7 @@ public class MiscConfig {
@ConfigOption(
name = "Enable Data Tracker",
desc = "Tracks all of your data from doing Trevor Quests.\n" +
- "Shows based on the setting below"
+ "Shows based on the setting below."
)
@ConfigEditorBoolean
@FeatureToggle
@@ -320,7 +320,7 @@ public class MiscConfig {
@ConfigOption(
name = "Show Between Quests",
desc = "Shows the tracker during and between quests otherwise it will only show during them." +
- "Will show in the Trapper's Den regardless. Global toggle above"
+ "Will show in the Trapper's Den regardless. §cToggle 'Enable Data Tracker' above."
)
@ConfigEditorBoolean
public boolean displayType = true;
@@ -488,7 +488,7 @@ public class MiscConfig {
public boolean enabled = false;
@Expose
- @ConfigOption(name = "Line color", desc = "Color of the line.")
+ @ConfigOption(name = "Line Color", desc = "Color of the line.")
@ConfigEditorColour
public String lineColor = "0:255:255:255:255";
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
index 2330e0990..d639068a5 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
@@ -28,7 +28,7 @@ public class RiftConfig {
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Max time", desc = "Show max time.")
+ @ConfigOption(name = "Max Time", desc = "Show max time.")
@ConfigEditorBoolean
public boolean maxTime = true;
@@ -173,7 +173,7 @@ public class RiftConfig {
public boolean solver = true;
@Expose
- @ConfigOption(name = "Color Guide", desc = "Tells you which colour to pick.")
+ @ConfigOption(name = "Color Guide", desc = "Tells you which color to pick.")
@ConfigEditorBoolean
@FeatureToggle
public boolean colour = true;
@@ -207,7 +207,7 @@ public class RiftConfig {
public static class VoltCruxConfig {
@Expose
- @ConfigOption(name = "Volt Warning", desc = "Shows a warning while a volt is discharging lightning.")
+ @ConfigOption(name = "Volt Warning", desc = "Shows a warning while a Volt is discharging lightning.")
@ConfigEditorBoolean
@FeatureToggle
public boolean voltWarning = true;
@@ -219,12 +219,12 @@ public class RiftConfig {
public boolean voltRange = true;
@Expose
- @ConfigOption(name = "Volt Range Highlighter Color", desc = "In which color should the volt range be highlighted?")
+ @ConfigOption(name = "Volt Range Highlighter Color", desc = "In which color should the Volt range be highlighted?")
@ConfigEditorColour
public String voltColour = "0:60:0:0:255";
@Expose
- @ConfigOption(name = "Volt mood color", desc = "Change the color of the volt enemy depending on their mood.")
+ @ConfigOption(name = "Volt Mood Color", desc = "Change the color of the Volt enemy depending on their mood.")
@ConfigEditorBoolean
@FeatureToggle
public boolean voltMoodMeter = false;
@@ -249,7 +249,7 @@ public class RiftConfig {
public boolean onlyOnFarmland = false;
@Expose
- @ConfigOption(name = "Hide Particles", desc = "Hide the wilted berberis particles.")
+ @ConfigOption(name = "Hide Particles", desc = "Hide the Wilted Berberis particles.")
@ConfigEditorBoolean
public boolean hideparticles = false;
@@ -292,7 +292,7 @@ public class RiftConfig {
public Property<String> monochromeColor = Property.of("0:60:0:0:255");
@Expose
- @ConfigOption(name = "Hide others players", desc = "Hide other players while doing the lava maze.")
+ @ConfigOption(name = "Hide Others Players", desc = "Hide other players while doing the lava maze.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hidePlayers = false;
@@ -333,7 +333,7 @@ public class RiftConfig {
public Property<String> monochromeColor = Property.of("0:60:0:0:255");
@Expose
- @ConfigOption(name = "Hide others players", desc = "Hide other players while doing the upside down parkour.")
+ @ConfigOption(name = "Hide Others Players", desc = "Hide other players while doing the upside down parkour.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hidePlayers = false;
@@ -354,7 +354,7 @@ public class RiftConfig {
public boolean enabled = false;
@Expose
- @ConfigOption(name = "Lines to show", desc = "How many tasks you should see.")
+ @ConfigOption(name = "Lines to Show", desc = "How many tasks you should see.")
@ConfigEditorSlider(minStep = 1, maxValue = 49, minValue = 1)
public int lineToShow = 3;
@@ -364,7 +364,7 @@ public class RiftConfig {
public int extraSpace = 0;
@Expose
- @ConfigOption(name = "Hide others players", desc = "Hide other players inside the dance room.")
+ @ConfigOption(name = "Hide Other Players", desc = "Hide other players inside the dance room.")
@ConfigEditorBoolean
public boolean hidePlayers = false;
@@ -478,7 +478,7 @@ public class RiftConfig {
public Property<String> monochromeColor = Property.of("0:60:0:0:255");
@Expose
- @ConfigOption(name = "Hide others players", desc = "Hide other players while doing the lava maze.")
+ @ConfigOption(name = "Hide Other Players", desc = "Hide other players while doing the lava maze.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hidePlayers = false;
@@ -509,7 +509,7 @@ public class RiftConfig {
public static class LivingMetalSuitProgress {
@Expose
- @ConfigOption(name = "Enabled", desc = "Display progress Living Metal Suit")
+ @ConfigOption(name = "Enabled", desc = "Display Living Metal Suit progress.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@@ -537,7 +537,7 @@ public class RiftConfig {
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Hide Particles", desc = "Hide particles around Defense Blocks")
+ @ConfigOption(name = "Hide Particles", desc = "Hide particles around Defense Blocks.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideParticles = false;
@@ -600,7 +600,7 @@ public class RiftConfig {
public static class EffigiesConfig {
@Expose
- @ConfigOption(name = "Enabled", desc = "Show locations of inactive Blood Effigy.")
+ @ConfigOption(name = "Enabled", desc = "Show locations of inactive Blood Effigies.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@@ -658,19 +658,19 @@ public class RiftConfig {
public int burgerStacks = 0;
@Expose
- @ConfigOption(name = "Inventory value", desc = "")
+ @ConfigOption(name = "Inventory Value", desc = "")
@Accordion
public InventoryValue inventoryValue = new InventoryValue();
public static class InventoryValue {
@Expose
- @ConfigOption(name = "Inventory value", desc = "Show total Motes NPC price for the current opened inventory.")
+ @ConfigOption(name = "Inventory Value", desc = "Show total Motes NPC price for the current opened inventory.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Number format type", desc = "Short: 1.2M\n" +
+ @ConfigOption(name = "Number Format Type", desc = "Short: 1.2M\n" +
"Long: 1,200,000")
@ConfigEditorDropdown(values = {"Short", "Long"})
public int formatType = 0;
@@ -694,7 +694,7 @@ public class RiftConfig {
public boolean enabled = true;
@Expose
- @ConfigOption(name = "Hide Particles", desc = "Hide normal motes orbs particles.")
+ @ConfigOption(name = "Hide Particles", desc = "Hide normal Motes Orbs particles.")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideParticles = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
index 9b0fd35d0..ede756f26 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java
@@ -30,7 +30,7 @@ public class SlayerConfig {
@Expose
@ConfigOption(name = "Highlight Beacon",
- desc = "Highlight the Enderman Slayer Yang Glyph (beacon) in red color and added an timer when he explodes. " +
+ desc = "Highlight the Enderman Slayer Yang Glyph (beacon) in red color and added a timer for when he explodes. " +
"Supports beacon in hand and beacon flying.")
@ConfigEditorBoolean
@FeatureToggle
@@ -54,7 +54,7 @@ public class SlayerConfig {
public boolean showLine = false;
@Expose
- @ConfigOption(name = "Line color", desc = "Color of the line.")
+ @ConfigOption(name = "Line Color", desc = "Color of the line.")
@ConfigEditorColour
public String lneColor = "0:255:255:0:88";
@@ -78,7 +78,7 @@ public class SlayerConfig {
public boolean endermanPhaseDisplay = false;
@Expose
- @ConfigOption(name = "Hide Particles", desc = "Hide particles around Enderman Slayer bosses and mini bosses.")
+ @ConfigOption(name = "Hide Particles", desc = "Hide particles around Enderman Slayer bosses and Mini-Bosses.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
@FeatureToggle
@@ -96,7 +96,7 @@ public class SlayerConfig {
public boolean blazeHellion = false;
@Expose
- @ConfigOption(name = "Colored Mobs", desc = "Color the blaze slayer boss and the demons in the right hellion shield color.")
+ @ConfigOption(name = "Colored Mobs", desc = "Color the Blaze Slayer boss and the demons in the right hellion shield color.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
@FeatureToggle
@@ -110,7 +110,7 @@ public class SlayerConfig {
public boolean blazeDaggers = false;
@Expose
- @ConfigOption(name = "Right Dagger", desc = "Mark the right dagger to use for blaze slayer in the dagger overlay.")
+ @ConfigOption(name = "Right Dagger", desc = "Mark the right dagger to use for Blaze Slayer in the dagger overlay.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
@FeatureToggle
@@ -123,7 +123,7 @@ public class SlayerConfig {
public int blazeFirstDagger = 0;
@Expose
- @ConfigOption(name = "Hide Chat", desc = "Remove the wrong blaze slayer dagger messages from chat.")
+ @ConfigOption(name = "Hide Chat", desc = "Remove the wrong Blaze Slayer dagger messages from chat.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
@FeatureToggle
@@ -137,13 +137,13 @@ public class SlayerConfig {
public boolean firePitsWarning = false;
@Expose
- @ConfigOption(name = "Phase Display", desc = "Show the current phase of the blaze slayer.")
+ @ConfigOption(name = "Phase Display", desc = "Show the current phase of the Blaze Slayer boss.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean blazePhaseDisplay = false;
@Expose
- @ConfigOption(name = "Clear View", desc = "Hide particles and fireballs near blaze slayer bosses and demons.")
+ @ConfigOption(name = "Clear View", desc = "Hide particles and fireballs near Blaze Slayer bosses and demons.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
@FeatureToggle
@@ -164,7 +164,7 @@ public class SlayerConfig {
public static class OwnBoss {
@Expose
- @ConfigOption(name = "Highlight your boss", desc = "Highlight your own vampire slayer boss.")
+ @ConfigOption(name = "Highlight Your Boss", desc = "Highlight your own Vampire Slayer boss.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlight = true;
@@ -201,7 +201,7 @@ public class SlayerConfig {
public static class OthersBoss {
@Expose
- @ConfigOption(name = "Highlight Others people boss", desc = "Highlight others players boss.\nYou need to hit them first.")
+ @ConfigOption(name = "Highlight Others Boss", desc = "Highlight others players boss.\nYou need to hit them first.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlight = true;
@@ -277,7 +277,7 @@ public class SlayerConfig {
public int withAlpha = 80;
@Expose
- @ConfigOption(name = "See Through Blocs", desc = "Highlight even when behind others mobs/players")
+ @ConfigOption(name = "See Through Blocks", desc = "Highlight even when behind others mobs/players.")
@ConfigEditorBoolean
public boolean seeThrough = false;
@@ -298,13 +298,13 @@ public class SlayerConfig {
public int twinclawsDelay = 0;
@Expose
- @ConfigOption(name = "Draw line", desc = "Draw a line starting at your crosshair to the boss head.")
+ @ConfigOption(name = "Draw Line", desc = "Draw a line starting at your crosshair to the boss head.")
@ConfigEditorBoolean
@FeatureToggle
public boolean drawLine = false;
@Expose
- @ConfigOption(name = "Line color", desc = "Color of the line.")
+ @ConfigOption(name = "Line Color", desc = "Color of the line.")
@ConfigEditorColour
public String lineColor = "0:255:255:0:88";
@@ -321,7 +321,7 @@ public class SlayerConfig {
public static class BloodIchor {
@Expose
- @ConfigOption(name = "Highlight blood Ichor", desc = "Highlight the blood Ichor.")
+ @ConfigOption(name = "Highlight Blood Ichor", desc = "Highlight the Blood Ichor.")
@ConfigEditorBoolean
@FeatureToggle
public boolean highlight = false;
@@ -338,13 +338,13 @@ public class SlayerConfig {
public String color = "0:199:100:0:88";
@Expose
- @ConfigOption(name = "Show lines", desc = "Draw lines that start from the head of the boss and end on the Blood Ichor.")
+ @ConfigOption(name = "Show Lines", desc = "Draw lines that start from the head of the boss and end on the Blood Ichor.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showLines = false;
@Expose
- @ConfigOption(name = "Lines start color", desc = "Starting color of the lines.")
+ @ConfigOption(name = "Lines Start Color", desc = "Starting color of the lines.")
@ConfigEditorColour
public String linesColor = "0:255:255:13:0";
@@ -368,13 +368,13 @@ public class SlayerConfig {
public String color = "0:199:100:0:88";
@Expose
- @ConfigOption(name = "Show lines", desc = "Draw lines that start from the head of the boss and end on the Killer Spring tower.")
+ @ConfigOption(name = "Show Lines", desc = "Draw lines that start from the head of the boss and end on the Killer Spring tower.")
@ConfigEditorBoolean
@FeatureToggle
public boolean showLines = false;
@Expose
- @ConfigOption(name = "Lines start color", desc = "Starting color of the lines.")
+ @ConfigOption(name = "Lines Start Color", desc = "Starting color of the lines.")
@ConfigEditorColour
public String linesColor = "0:255:255:13:0";
}
@@ -415,13 +415,13 @@ public class SlayerConfig {
public int minimumPrice = 100_000;
@Expose
- @ConfigOption(name = "Title Warning", desc = "Show an title for expensive item pickups.")
+ @ConfigOption(name = "Title Warning", desc = "Show a title for expensive item pickups.")
@ConfigEditorBoolean
@FeatureToggle
public boolean titleWarning = false;
@Expose
- @ConfigOption(name = "Title Price", desc = "Items above this price will show up as title.")
+ @ConfigOption(name = "Title Price", desc = "Items above this price will show up as a title.")
@ConfigEditorSlider(minValue = 1, maxValue = 20_000_000, minStep = 1)
public int minimumPriceWarning = 500_000;
}
@@ -453,7 +453,7 @@ public class SlayerConfig {
public static class RngMeterDisplay {
@Expose
- @ConfigOption(name = "Enabled", desc = "Display amount of bosses needed until next rng meter drop.")
+ @ConfigOption(name = "Enabled", desc = "Display amount of bosses needed until next RNG meter drop.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = true;
@@ -464,7 +464,7 @@ public class SlayerConfig {
public boolean warnEmpty = false;
@Expose
- @ConfigOption(name = "Hide Chat", desc = "Hide the rng meter message from chat if current item is selected.")
+ @ConfigOption(name = "Hide Chat", desc = "Hide the RNG meter message from chat if current item is selected.")
@ConfigEditorBoolean
public boolean hideChat = true;
@@ -498,13 +498,13 @@ public class SlayerConfig {
}
@Expose
- @ConfigOption(name = "Miniboss Highlight", desc = "Highlight slayer miniboss in blue color.")
+ @ConfigOption(name = "Miniboss Highlight", desc = "Highlight Slayer Mini-Boss in blue color.")
@ConfigEditorBoolean
@FeatureToggle
public boolean slayerMinibossHighlight = false;
@Expose
- @ConfigOption(name = "Line to Miniboss", desc = "Adds a line to every slayer miniboss around you.")
+ @ConfigOption(name = "Line to Miniboss", desc = "Adds a line to every Slayer Mini-Boss around you.")
@ConfigEditorBoolean
@FeatureToggle
public boolean slayerMinibossLine = false;
@@ -516,13 +516,13 @@ public class SlayerConfig {
public boolean hideMobNames = false;
@Expose
- @ConfigOption(name = "Quest Warning", desc = "Warning when wrong slayer quest is selected, or killing mobs for the wrong slayer.")
+ @ConfigOption(name = "Quest Warning", desc = "Warning when wrong Slayer quest is selected, or killing mobs for the wrong Slayer.")
@ConfigEditorBoolean
@FeatureToggle
public boolean questWarning = true;
@Expose
- @ConfigOption(name = "Quest Warning Title", desc = "Sends a Title when warning.")
+ @ConfigOption(name = "Quest Warning Title", desc = "Sends a title when warning.")
@ConfigEditorBoolean
@FeatureToggle
public boolean questWarningTitle = true;