diff options
Diffstat (limited to 'src/main/java/at')
18 files changed, 84 insertions, 84 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index b30659e8d..e087b790c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -286,7 +286,7 @@ public class Features extends Config { public Bingo bingo = new Bingo(); @Expose - @Category(name = "Mobs", desc = "Visual Help for Mobs") + @Category(name = "Mobs", desc = "Visual help for Mobs") public Mobs mobs = new Mobs(); @Expose diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java b/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java index 9708f5dd4..6a04dd075 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java @@ -10,7 +10,7 @@ import com.google.gson.annotations.Expose; public class Ashfang { @Expose - @ConfigOption(name = "Freeze", desc = "Show the cooldown how long Ashfang blocks all your abilities.") + @ConfigOption(name = "Freeze", desc = "Show the cooldown fpr how long Ashfang blocks your abilities.") @ConfigEditorBoolean public boolean freezeCooldown = false; @@ -20,7 +20,7 @@ public class Ashfang { public Position freezeCooldownPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Reset Time", desc = "Show the cooldown until ashfang pulls his underlings back.") + @ConfigOption(name = "Reset Time", desc = "Show the cooldown until Ashfang pulls his underlings back.") @ConfigEditorBoolean public boolean nextResetCooldown = false; @@ -30,7 +30,7 @@ public class Ashfang { public Position nextResetCooldownPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Gravity Orbs", desc = "Showing the Gravity Orbs more clearly.") + @ConfigOption(name = "Gravity Orbs", desc = "Shows the Gravity Orbs more clearly.") @ConfigEditorBoolean public boolean gravityOrbs = false; @@ -40,7 +40,7 @@ public class Ashfang { public String gravityOrbsColor = "0:120:255:85:85"; @Expose - @ConfigOption(name = "Blazing Souls", desc = "Showing the Blazing Souls more clearly.") + @ConfigOption(name = "Blazing Souls", desc = "Shows the Blazing Souls more clearly.") @ConfigEditorBoolean public boolean blazingSouls = false; @@ -50,22 +50,22 @@ public class Ashfang { public String blazingSoulsColor = "0:245:85:255:85"; @Expose - @ConfigOption(name = "Highlight Blazes", desc = "Highlight the different blazes in their respected color.") + @ConfigOption(name = "Highlight Blazes", desc = "Highlight the different blazes in their respective colors.") @ConfigEditorBoolean public boolean highlightBlazes = false; @Expose - @ConfigOption(name = "Hide Particles", desc = "Hide particles around the ashfang boss.") + @ConfigOption(name = "Hide Particles", desc = "Hide particles around the Ashfang boss.") @ConfigEditorBoolean public boolean hideParticles = false; @Expose - @ConfigOption(name = "Hide Names", desc = "Hide the name of full health blazes around ashfang (only useful when highlight blazes is enabled)") + @ConfigOption(name = "Hide Names", desc = "Hide the names of full health blazes around Ashfang (only useful when highlight blazes is enabled)") @ConfigEditorBoolean public boolean hideNames = false; @Expose - @ConfigOption(name = "Hide Damage", desc = "Hide damage splashes around ashfang.") + @ConfigOption(name = "Hide Damage", desc = "Hide damage splashes around Ashfang.") @ConfigEditorBoolean public boolean hideDamageSplash = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java index 2e3ea2195..a324d2a86 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java @@ -29,7 +29,7 @@ public class Bazaar { public boolean cancelledBuyOrderClipboard = true; @Expose - @ConfigOption(name = "Update Timer", desc = "A countdown timer for upcoming Bazzar data update.") + @ConfigOption(name = "Update Timer", desc = "A countdown timer for the next Bazaar data update.") @ConfigEditorBoolean public boolean updateTimer = false; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java b/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java index 4b4610d75..4eb0547d0 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java @@ -8,7 +8,7 @@ public class Bingo { @Expose @ConfigOption(name = "Compact Chat Messages", desc = "Shortens chat messages about skill level ups, collection gains, " + - "new area discoveries, and bestiarity upgrades while on bingo.") + "new area discoveries, and bestiary upgrades while on bingo.") @ConfigEditorBoolean public boolean compactChatMessages = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java index 970cc43fc..a195bfc1c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java @@ -7,7 +7,7 @@ import org.lwjgl.input.Keyboard; public class Chat { @Expose - @ConfigOption(name = "Peek Chat", desc = "Hold this key to keep the chat open") + @ConfigOption(name = "Peek Chat", desc = "Hold this key to keep the chat open.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_Z) public int peekChat = Keyboard.KEY_Z; @@ -29,7 +29,7 @@ public class Chat { public boolean empty = true; @Expose - @ConfigOption(name = "Warping", desc = "Block 'sending request to join ..' and 'warping ..' messages.") + @ConfigOption(name = "Warping", desc = "Block 'sending request to join...' and 'warping...' messages.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean warping = true; @@ -41,7 +41,7 @@ public class Chat { public boolean welcome = true; @Expose - @ConfigOption(name = "Guild Exp", desc = "Hide Guild Exp messages.") + @ConfigOption(name = "Guild Exp", desc = "Hide guild exp messages.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean guildExp = true; @@ -101,7 +101,7 @@ public class Chat { public boolean chatFilter = false; @Expose - @ConfigOption(name = "Dungeon Filter", desc = "Hide annoying messages in the dungeon.") + @ConfigOption(name = "Dungeon Filter", desc = "Hide annoying messages in dungeons.") @ConfigEditorBoolean public boolean dungeonMessages = true; @@ -111,8 +111,8 @@ public class Chat { public boolean dungeonBossMessages = false; @Expose - @ConfigOption(name = "Hide Far Deaths", desc = "Hide the death messages of other players, " + - "except for players who are close to the player, inside dungeon or during a Kuudra fight.") + @ConfigOption(name = "Hide Far Deaths", desc = "Hide other players' death messages, " + + "except for players who are nearby or during dungeons/a Kuudra fight.") @ConfigEditorBoolean public boolean hideFarDeathMessages = false; //TODO jawbus + x diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java index ed1ea7f56..385f471d7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/CommandsFeatures.java @@ -7,7 +7,7 @@ import com.google.gson.annotations.Expose; public class CommandsFeatures { @Expose - @ConfigOption(name = "Fandom Wiki", desc = "Using §ehypixel-skyblock.fandom.com §7instead of Hypixel wiki") + @ConfigOption(name = "Fandom Wiki", desc = "Use Fandom wiki (§ehypixel-skyblock.fandom.com§7) instead of the Hypixel wiki (§ewiki.hypixel.net§7).") @ConfigEditorBoolean public boolean useFandomWiki = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java index c392edeba..a491090d4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java @@ -13,12 +13,12 @@ import java.util.List; public class DamageIndicator { @Expose - @ConfigOption(name = "Damage Indicator Enabled", desc = "Show the missing health of a boss.") + @ConfigOption(name = "Damage Indicator Enabled", desc = "Show the boss' remaining health.") @ConfigEditorBoolean public boolean enabled = false; @Expose - @ConfigOption(name = "Healing Chat Message", desc = "Sends a chat message when a boss heals himself.") + @ConfigOption(name = "Healing Chat Message", desc = "Sends a chat message when a boss heals themself.") @ConfigEditorBoolean public boolean healingMessage = false; @@ -83,7 +83,7 @@ public class DamageIndicator { public boolean hideVanillaNametag = false; @Expose - @ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the Slayer boss.") + @ConfigOption(name = "Time to Kill", desc = "Show the time it takes to kill the slayer boss.") @ConfigEditorBoolean public boolean timeToKillSlayer = true; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java b/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java index 984cc4165..072ac2fba 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Diana.java @@ -9,7 +9,7 @@ import org.lwjgl.input.Keyboard; public class Diana { @Expose - @ConfigOption(name = "Soopy Guess", desc = "Uses §eSoopy's Guess Logic §7to find the next burrow. Does not require SoopyV2 or chat triggers to be installed.") + @ConfigOption(name = "Soopy Guess", desc = "Uses §eSoopy's Guess Logic §7to find the next burrow. Does not require SoopyV2 or ChatTriggers to be installed.") @ConfigEditorBoolean public boolean burrowsSoopyGuess = false; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java index 074d4e0f7..7a2ed35ed 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java @@ -7,7 +7,7 @@ import com.google.gson.annotations.Expose; public class Dungeon { @Expose - @ConfigOption(name = "Clicked Blocks", desc = "Highlight the following blocks when clicked in dungeon: Lever, Chest, Wither Essence.") + @ConfigOption(name = "Clicked Blocks", desc = "Highlight levers, chests, and wither essence when clicked in dungeons.") @ConfigEditorBoolean public boolean highlightClickedBlocks = false; @@ -16,7 +16,7 @@ public class Dungeon { public boolean showMilestone = false; @Expose - @ConfigOption(name = "Milestones Display", desc = "Show the current milestone in dungeon.") + @ConfigOption(name = "Milestones Display", desc = "Show the current milestone in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean showMilestonesDisplay = false; @@ -32,7 +32,7 @@ public class Dungeon { public boolean deathCounter = false; @Expose - @ConfigOption(name = "Death Counter Display", desc = "Display the total amount of deaths in the current dungeon.") + @ConfigOption(name = "Death Counter Display", desc = "Display the total amount of deaths in the current dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean deathCounterDisplay = false; @@ -62,7 +62,7 @@ public class Dungeon { public boolean cleanEndF3IgnoreGuardians = false; @Expose - @ConfigOption(name = "Boss Damage Splash", desc = "Hiding damage splashes while inside the boss room. (fixing Skytils feature)") + @ConfigOption(name = "Boss Damage Splash", desc = "Hides damage splashes while inside the boss room (fixes a Skytils feature).") @ConfigEditorBoolean public boolean damageSplashBoss = false; @@ -71,42 +71,42 @@ public class Dungeon { @ConfigEditorBoolean public boolean highlightDeathmites = true; - @ConfigOption(name = "Object Hider", desc = "Hide various things in dungeon.") + @ConfigOption(name = "Object Hider", desc = "Hide various things in dungeons.") @ConfigEditorAccordion(id = 3) public boolean objectHider = false; @Expose - @ConfigOption(name = "Hide Superboom TNT", desc = "Hide Superboom TNT laying around in dungeon.") + @ConfigOption(name = "Hide Superboom TNT", desc = "Hide Superboom TNT laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hideSuperboomTNT = false; @Expose - @ConfigOption(name = "Hide Blessings", desc = "Hide Blessings laying around in dungeon.") + @ConfigOption(name = "Hide Blessings", desc = "Hide Blessings laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hideBlessing = false; @Expose - @ConfigOption(name = "Hide Revive Stones", desc = "Hide Revive Stones laying around in dungeon.") + @ConfigOption(name = "Hide Revive Stones", desc = "Hide Revive Stones laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hideReviveStone = false; @Expose - @ConfigOption(name = "Hide Premium Flesh", desc = "Hide Premium Flesh laying around in dungeon.") + @ConfigOption(name = "Hide Premium Flesh", desc = "Hide Premium Flesh laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hidePremiumFlesh = false; @Expose - @ConfigOption(name = "Hide Journal Entry", desc = "Hide Journal Entry pages laying around in dungeon.") + @ConfigOption(name = "Hide Journal Entry", desc = "Hide Journal Entry pages laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hideJournalEntry = false; @Expose - @ConfigOption(name = "Hide Skeleton Skull", desc = "Hide skeleton skulls laying around in dungeon.") + @ConfigOption(name = "Hide Skeleton Skull", desc = "Hide Skeleton Skulls laying around in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 3) public boolean hideSkeletonSkull = true; @@ -138,7 +138,7 @@ public class Dungeon { public boolean dungeonCopilot = false; @Expose - @ConfigOption(name = "Copilot Enabled", desc = "Suggests what to do next in dungeon.") + @ConfigOption(name = "Copilot Enabled", desc = "Suggests what to do next in dungeons.") @ConfigEditorBoolean @ConfigAccordionId(id = 5) public boolean copilotEnabled = false; @@ -154,20 +154,20 @@ public class Dungeon { public boolean partyFinder = false; @Expose - @ConfigOption(name = "Colored Class Level", desc = "Show the class levels in party finder in colors.") + @ConfigOption(name = "Colored Class Level", desc = "Color class levels in party finder.") @ConfigAccordionId(id = 6) @ConfigEditorBoolean public boolean partyFinderColoredClassLevel = true; @Expose - @ConfigOption(name = "Moving Skeleton Skulls", desc = "Highlight Skeleton Skulls when combining into a " + - "Skeletor in orange color (not useful combined with feature Hide Skeleton Skull)") + @ConfigOption(name = "Moving Skeleton Skulls", desc = "Highlight Skeleton Skulls when combining into an " + + "orange Skeletor (not useful when combined with feature Hide Skeleton Skull).") @ConfigEditorBoolean public boolean highlightSkeletonSkull = true; @Expose @ConfigOption(name = "Croesus Unopened Chest Tracker", desc = "Adds a visual highlight to the Croesus inventory that " + - "shows what chests have not yet been opened.") + "shows unopened chests.") @ConfigEditorBoolean public boolean croesusUnopenedChestTracker = true; -}
\ No newline at end of file +} diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java index 9bb106829..d745db119 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Fishing.java @@ -13,7 +13,7 @@ public class Fishing { @Expose @ConfigOption( name = "Trophy Counter", - desc = "Counts every single Trohy message from chat and tells you how many you got already." + desc = "Counts Trophy messages from chat and tells you how many you have found." ) @ConfigEditorBoolean @ConfigAccordionId(id = 0) @@ -102,7 +102,7 @@ public class Fishing { public Position sharkFishCounterPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Shorten Fishing Message", desc = "Shorten the chat message 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 public boolean shortenFishingMessage = false; -}
\ No newline at end of file +} diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index a1272c452..837dc92e0 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -43,7 +43,7 @@ public class Garden { @Expose @ConfigOption(name = "Visitor Timer", desc = "Timer when the next visitor will appear, " + - "and a number how many visitors are already waiting.") + "and a number for how many visitors are already waiting.") @ConfigEditorBoolean @ConfigAccordionId(id = 2) public boolean visitorTimerEnabled = true; @@ -85,7 +85,7 @@ public class Garden { public boolean visitorInventory = false; @Expose - @ConfigOption(name = "Visitor Price", desc = "Show the bazaar price of the items required for the visitors. (Like in NEU)") + @ConfigOption(name = "Visitor Price", desc = "Show the bazaar price of the items required for the visitors, like in NEU.") @ConfigEditorBoolean @ConfigAccordionId(id = 4) public boolean visitorShowPrice = false; @@ -115,7 +115,7 @@ public class Garden { public boolean visitorNotificationTitle = true; @Expose - @ConfigOption(name = "Highlight", desc = "Highlight visitor when the required items are in the inventory or the visitor is new and needs to checked what items it needs.") + @ConfigOption(name = "Highlight", desc = "Highlight visitor when the required items are in the inventory or the visitor is new and required items need to be checked.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean visitorHighlight = true; @@ -156,7 +156,7 @@ public class Garden { @ConfigOption( name = "Warn When Close", desc = "Warn with title and sound when the next crop milestone upgrade happens in 5 seconds. " + - "(Useful for switching to a different pet for leveling)") + "Useful for switching to a different pet for leveling.") @ConfigEditorBoolean @ConfigAccordionId(id = 6) public boolean cropMilestoneWarnClose = true; @@ -223,12 +223,12 @@ public class Garden { public boolean keybind = false; @Expose - @ConfigOption(name = "Enabled", desc = "Use custom keybinds while having a farming tool or Daedalus Axe in the hand in the garden. §cOnly updates after scrolling in the hotbar.") + @ConfigOption(name = "Enabled", desc = "Use custom keybinds while holding a farming tool or daedalus axe in the garden. §cOnly updates after scrolling in the hotbar.") @ConfigEditorBoolean @ConfigAccordionId(id = 8) public boolean keyBindEnabled = false; - @ConfigOption(name = "Disable All", desc = "Disabling all keys.") + @ConfigOption(name = "Disable All", desc = "Disable all keys.") @ConfigEditorButton(runnableId = "gardenKeyBindPresetDisabled", buttonText = "Disable") @ConfigAccordionId(id = 8) public int keyBindPresetDisable = 0; @@ -286,7 +286,7 @@ public class Garden { public boolean optimalSpeed = false; @Expose - @ConfigOption(name = "Enabled", desc = "Show the optimal speed for your current tool in the hand. (Ty MelonKingDE for the values)") + @ConfigOption(name = "Enabled", desc = "Show the optimal speed for your current tool in the hand. (Ty MelonKingDE for the values).") @ConfigEditorBoolean @ConfigAccordionId(id = 9) public boolean optimalSpeedEnabled = true; @@ -352,7 +352,7 @@ public class Garden { public boolean dicerCounter = false; @Expose - @ConfigOption(name = "Rng Drop Counter", desc = "Count RNG drops for Melon Dicer and Pumpkin Dicer") + @ConfigOption(name = "Rng Drop Counter", desc = "Count RNG drops for Melon Dicer and Pumpkin Dicer.") @ConfigEditorBoolean @ConfigAccordionId(id = 12) public boolean dicerCounterDisplay = true; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java index 06e4d9587..0e3fa3ba6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Inventory.java @@ -43,19 +43,19 @@ public class Inventory { public boolean rngMeter = false; @Expose - @ConfigOption(name = "Floor Names", desc = "Show the floor names in the catacombs rng meter inventory") + @ConfigOption(name = "Floor Names", desc = "Show the floor names in the catacombs rng meter inventory.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean rngMeterFloorName = false; @Expose - @ConfigOption(name = "No Drop", desc = "Highlight floors without a drop selected in the catacombs rng meter inventory") + @ConfigOption(name = "No Drop", desc = "Highlight floors without a drop selected in the catacombs rng meter inventory.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean rngMeterNoDrop = false; @Expose - @ConfigOption(name = "Selected Drop", desc = "Highlight the selected drop in the catacombs or slayer rng meter inventory") + @ConfigOption(name = "Selected Drop", desc = "Highlight the selected drop in the catacombs or slayer rng meter inventory.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean rngMeterSelectedDrop = false; @@ -91,7 +91,7 @@ public class Inventory { @Expose @ConfigOption( name = "Item number", - desc = "Showing the item number as a stack size for these items" + desc = "Showing the item number as a stack size for these items." ) @ConfigEditorDraggableList( exampleText = { @@ -112,7 +112,7 @@ public class Inventory { public List<Integer> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(3, 9, 11)); @Expose - @ConfigOption(name = "Sack Name", desc = "Show an abbreviation of the Sack name.") + @ConfigOption(name = "Sack Name", desc = "Show an abbreviation of the sack name.") @ConfigEditorBoolean public boolean displaySackName = false; @@ -129,7 +129,7 @@ public class Inventory { @Expose @ConfigOption(name = "Highlight Depleted Bonzo's Masks", - desc = "Highlights used Bonzo's Masks with a background") + desc = "Highlights used Bonzo's Masks with a background.") @ConfigEditorBoolean public boolean highlightDepletedBonzosMasks = false; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/ItemAbilities.java b/src/main/java/at/hannibal2/skyhanni/config/features/ItemAbilities.java index 38cb20940..11feed3d1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/ItemAbilities.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/ItemAbilities.java @@ -21,7 +21,7 @@ public class ItemAbilities { public boolean fireVeilWand = false; @Expose - @ConfigOption(name = "Fire Veil Design", desc = "Changes the flame particles of the Fire Veil Wand ability") + @ConfigOption(name = "Fire Veil Design", desc = "Changes the flame particles of the Fire Veil Wand ability.") @ConfigEditorDropdown(values = {"Particles", "Line", "Off"}) @ConfigAccordionId(id = 1) public int fireVeilWandDisplay = 0; @@ -29,7 +29,7 @@ public class ItemAbilities { @Expose @ConfigOption( name = "Line Color", - desc = "Changes the color of the Fire Veil Wand line" + desc = "Changes the color of the Fire Veil Wand line." ) @ConfigEditorColour @ConfigAccordionId(id = 1) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java index d29eb45bd..31080839a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Minions.java @@ -16,7 +16,7 @@ public class Minions { public boolean lastClickedMinion = false; @Expose - @ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion (even through walls)") + @ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion, even through walls.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean lastClickedMinionDisplay = false; @@ -24,7 +24,7 @@ public class Minions { @Expose @ConfigOption( name = "Last Minion Color", - desc = "The colour in which the last minion should be displayed" + desc = "The color in which the last minion should be displayed." ) @ConfigEditorColour @ConfigAccordionId(id = 0) @@ -33,7 +33,7 @@ public class Minions { @Expose @ConfigOption( name = "Last Minion Time", - desc = "Time in seconds how long the last minion should be displayed" + desc = "Time in seconds how long the last minion should be displayed." ) @ConfigEditorSlider( minValue = 3, @@ -56,7 +56,7 @@ public class Minions { @Expose @ConfigOption( name = "Distance", - desc = "At what distance is the minion display shown." + desc = "Maximum distance to display minion data." ) @ConfigEditorSlider( minValue = 3, @@ -71,7 +71,7 @@ public class Minions { public boolean hopperProfit = false; @Expose - @ConfigOption(name = "Hopper Profit Display", desc = "Using the held coins and the last empty time to calculate the coins a hopper collects in a day") + @ConfigOption(name = "Hopper Profit Display", desc = "Use the hopper's held coins and the last empty time to calculate the coins per day.") @ConfigEditorBoolean @ConfigAccordionId(id = 2) public boolean hopperProfitDisplay = true; @@ -83,7 +83,7 @@ public class Minions { public Position hopperProfitPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions") + @ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions.") @ConfigEditorBoolean public boolean hideMobsNametagNearby = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index c77349d51..3535b3fac 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -29,7 +29,7 @@ public class Misc { public boolean time = false; @Expose - @ConfigOption(name = "Real Time", desc = "Show the real time. Useful while playing in full screen mode") + @ConfigOption(name = "Real Time", desc = "Show IRL time. Useful while playing in full screen mode.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) public boolean realTime = false; @@ -46,19 +46,19 @@ public class Misc { public boolean hideArmor = false; @Expose - @ConfigOption(name = "Hide Armor", desc = "Hide the armor of players.") + @ConfigOption(name = "Hide Armor", desc = "Hide other players' armor.") @ConfigEditorBoolean(runnableId = "hideArmor") @ConfigAccordionId(id = 3) public boolean hideArmorEnabled = false; @Expose - @ConfigOption(name = "Own Armor", desc = "Hide the armor of yourself.") + @ConfigOption(name = "Own Armor", desc = "Hide your own armor.") @ConfigEditorBoolean(runnableId = "hideArmor") @ConfigAccordionId(id = 3) public boolean hideArmorOwn = true; @Expose - @ConfigOption(name = "Only Helmet", desc = "Hide only the helmet.") + @ConfigOption(name = "Only Helmet", desc = "Only hide the helmet.") @ConfigEditorBoolean(runnableId = "hideArmor") @ConfigAccordionId(id = 3) public boolean hideArmorOnlyHelmet = false; @@ -69,7 +69,7 @@ public class Misc { public boolean damageSplash = false; @Expose - @ConfigOption(name = "Hide Damage Splash", desc = "Hide all damage splashes, from anywhere in Skyblock.") + @ConfigOption(name = "Hide Damage Splash", desc = "Hide all damage splashes anywhere in Skyblock.") @ConfigEditorBoolean @ConfigAccordionId(id = 4) public boolean hideDamageSplash = false; @@ -109,7 +109,7 @@ public class Misc { public Position crimsonIsleReputationHelperPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Reputation Locations", desc = "Show locations to the points where to do stuff in the Crimson Isle to get reputation.") + @ConfigOption(name = "Reputation Locations", desc = "Crimson Isles waypoints for locations to get reputation.") @ConfigEditorBoolean @ConfigAccordionId(id = 6) public boolean crimsonIsleReputationLocation = false; @@ -120,7 +120,7 @@ public class Misc { public boolean tiaRelay = false; @Expose - @ConfigOption(name = "Tia Relay Waypoint", desc = "Show the next Relay waypoint for Tia The Fairy, where maintenance for the abiphone network needs to be done.") + @ConfigOption(name = "Tia Relay Waypoint", desc = "Show the next relay waypoint for Tia the Fairy, where maintenance for the abiphone network needs to be done.") @ConfigEditorBoolean @ConfigAccordionId(id = 7) public boolean tiaRelayNextWaypoint = true; @@ -138,7 +138,7 @@ public class Misc { public boolean tiaRelayHelper = true; @Expose - @ConfigOption(name = "Tia Relay Mute", desc = "Mutes the sound when close to the Relay.") + @ConfigOption(name = "Tia Relay Mute", desc = "Mutes the sound when close to the relay.") @ConfigEditorBoolean @ConfigAccordionId(id = 7) public boolean tiaRelayMute = true; @@ -149,7 +149,7 @@ public class Misc { public boolean tpsDisplay = false; @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 @ConfigAccordionId(id = 8) public boolean tpsDisplayEnabled = false; @@ -166,13 +166,13 @@ public class Misc { public boolean particleHider = false; @Expose - @ConfigOption(name = "Blaze Particles", desc = "Hide blaze particles") + @ConfigOption(name = "Blaze Particles", desc = "Hide blaze particles.") @ConfigEditorBoolean @ConfigAccordionId(id = 9) public boolean hideBlazeParticles = false; @Expose - @ConfigOption(name = "Fireball Particles", desc = "Hide fireball particles") + @ConfigOption(name = "Fireball Particles", desc = "Hide fireball particles.") @ConfigEditorBoolean @ConfigAccordionId(id = 9) public boolean hideFireballParticles = true; @@ -196,7 +196,7 @@ public class Misc { public boolean hideFarParticles = true; @Expose - @ConfigOption(name = "Close Redstone Particles", desc = "Hide redstone particles around the player. (They spawn when having some potion effects active)") + @ConfigOption(name = "Close Redstone Particles", desc = "Hide redstone particles around the player (appear for some potion effects).") @ConfigEditorBoolean @ConfigAccordionId(id = 9) public boolean hideCloseRedstoneparticles = true; @@ -252,4 +252,4 @@ public class Misc { @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean public boolean configButtonOnPause = true; -}
\ No newline at end of file +} diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java index 97d69532d..372b8c327 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Mobs.java @@ -40,7 +40,7 @@ public class Mobs { @Expose @ConfigOption( name = "Special Zealots", - desc = "Highlight Special Zealots in The End. (The one that drops Summoning Eyes)" + desc = "Highlight Special Zealots (the ones that drop summoning eyes) in the End." ) @ConfigEditorBoolean @ConfigAccordionId(id = 0) @@ -68,7 +68,7 @@ public class Mobs { public boolean areaBossRespawnTimer = false; @Expose - @ConfigOption(name = "Enderman Teleportation Hider", desc = "Stops the Enderman Teleportation animation (Like in SBA)") + @ConfigOption(name = "Enderman Teleportation Hider", desc = "Stops the Enderman Teleportation animation, like in SBA.") @ConfigEditorBoolean public boolean endermanTeleportationHider = false; } diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java index 92363b971..e9c2375c4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java @@ -11,7 +11,7 @@ public class Slayer { public boolean enderman = false; @Expose - @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color. (supports beacon in hand and beacon flying)") + @ConfigOption(name = "Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color. Supports beacon in hand and beacon flying.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean slayerEndermanBeacon = false; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java b/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java index 88253fb0a..7a35405dc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java @@ -8,7 +8,7 @@ public class Summonings { @Expose @ConfigOption(name = "Summoning Soul Display", desc = "Show the name of dropped summoning souls laying on the ground. " + - "§cNot working in Dungeon 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 public boolean summoningSoulDisplay = false; @@ -18,7 +18,7 @@ public class Summonings { public boolean summoningMob = false; @Expose - @ConfigOption(name = "Summoning Mob Display", desc = "Show the health of your spawned summoning mobs") + @ConfigOption(name = "Summoning Mob Display", desc = "Show the health of your spawned summons.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobDisplay = false; @@ -30,13 +30,13 @@ public class Summonings { public Position summoningMobDisplayPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summoning mobs") + @ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summons.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobHideNametag = false; @Expose - @ConfigOption(name = "Summoning Mob Color", desc = "Marks own summoning mobs green") + @ConfigOption(name = "Summoning Mob Color", desc = "Marks own summons green.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobColored = false; |