diff options
author | NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> | 2023-03-15 12:11:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 12:11:34 -0400 |
commit | 40887ff86dbd42458f3d18588101ca92a14d58f1 (patch) | |
tree | 0ac922c224d091080cce34a9674656c958e1b4bb | |
parent | 1a0a0da604d95dc7d8a6fa425b2a0d3a70e97936 (diff) | |
download | skyhanni-40887ff86dbd42458f3d18588101ca92a14d58f1.tar.gz skyhanni-40887ff86dbd42458f3d18588101ca92a14d58f1.tar.bz2 skyhanni-40887ff86dbd42458f3d18588101ca92a14d58f1.zip |
Conciseness and Grammar
Shortened some unnecessarily wordy messages, made sure there was a period after every sentence, fixed ellipses - they don't need spaces and they're 3 dots long.
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Chat.java | 12 |
1 files changed, 6 insertions, 6 deletions
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 |