diff options
| author | Walker Selby <git@walkerselby.com> | 2022-02-24 07:17:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-24 14:17:08 +0100 |
| commit | ca26771b6fffc102b1585e4aaab297877339633e (patch) | |
| tree | cc6c23f816915db38b4dfcd8ba10635405a2018e /src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java | |
| parent | e857e536d7dcea7c4e847ba598a0ed7dd20ed3e6 (diff) | |
| download | notenoughupdates-ca26771b6fffc102b1585e4aaab297877339633e.tar.gz notenoughupdates-ca26771b6fffc102b1585e4aaab297877339633e.tar.bz2 notenoughupdates-ca26771b6fffc102b1585e4aaab297877339633e.zip | |
Fix Typos / Grammar (#87)
* Fix Typos / Grammar
Because this is obviously a very pressing issue.
* Fix another Typo
Oops, forgot.
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java b/src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java index 86f217f6..59eedbaa 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java @@ -46,7 +46,7 @@ public class PeekCommand extends ClientCommandBase { NotEnoughUpdates.profileViewer.getProfileByName(name, profile -> { if (profile == null) { Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessageWithOptionalDeletion(new ChatComponentText( - EnumChatFormatting.RED + "[PEEK] Unknown player or api is down."), id); + EnumChatFormatting.RED + "[PEEK] Unknown player or the api is down."), id); } else { profile.resetCache(); @@ -60,7 +60,7 @@ public class PeekCommand extends ClientCommandBase { } Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessageWithOptionalDeletion(new ChatComponentText( - EnumChatFormatting.YELLOW + "[PEEK] Getting player skyblock profiles..."), id); + EnumChatFormatting.YELLOW + "[PEEK] Getting the player's Skyblock profile(s)..."), id); long startTime = System.currentTimeMillis(); peekCommandExecutorService.schedule(new Runnable() { |
