aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2022-10-19 15:07:27 -0700
committerGitHub <noreply@github.com>2022-10-20 00:07:27 +0200
commit498b8d8a7dbef859cd5829fceee7f83dbe69d870 (patch)
treec2e0895b58da61de7be3aa7369a52cfa8cf09e46 /src/main/java/io/github/moulberry/notenoughupdates/commands/profile/PeekCommand.java
parent90d3fcd1667f12fe0bfe3e311c4739266274a620 (diff)
downloadnotenoughupdates-498b8d8a7dbef859cd5829fceee7f83dbe69d870.tar.gz
notenoughupdates-498b8d8a7dbef859cd5829fceee7f83dbe69d870.tar.bz2
notenoughupdates-498b8d8a7dbef859cd5829fceee7f83dbe69d870.zip
Miscellaneous Typos (#339)
Co-authored-by: MicrocontrollersDev <66657148+MicrocontrollersDev@users.noreply.github.com>
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.java8
1 files changed, 4 insertions, 4 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 75e779fc..c1c184f6 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
@@ -68,7 +68,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 the api is down."), id);
+ EnumChatFormatting.RED + "[PEEK] Unknown player or the Hypixel API is down."), id);
} else {
profile.resetCache();
@@ -78,12 +78,12 @@ public class PeekCommand extends ClientCommandBase {
if (peekScheduledFuture != null && !peekScheduledFuture.isDone()) {
Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(
- EnumChatFormatting.RED + "[PEEK] New peek command run, cancelling old one."));
+ EnumChatFormatting.RED + "[PEEK] New peek command was run, cancelling old one."));
peekScheduledFuture.cancel(true);
}
Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessageWithOptionalDeletion(new ChatComponentText(
- EnumChatFormatting.YELLOW + "[PEEK] Getting the player's Skyblock profile(s)..."), id);
+ EnumChatFormatting.YELLOW + "[PEEK] Getting the player's SkyBlock profile(s)..."), id);
long startTime = System.currentTimeMillis();
peekScheduledFuture = peekCommandExecutorService.schedule(new Runnable() {
@@ -287,7 +287,7 @@ public class PeekCommand extends ClientCommandBase {
} else if (overallScore > 2) {
overall = EnumChatFormatting.YELLOW + "Ender Non";
} else if (overallScore > 1) {
- overall = EnumChatFormatting.RED + "Played Skyblock";
+ overall = EnumChatFormatting.RED + "Played SkyBlock";
}
Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(g + "Overall score: " +