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 | |
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.
3 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 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() { diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java index 6db021f1..35713153 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java @@ -12,7 +12,7 @@ import java.util.List; public class SkillOverlays {
@ConfigOption(
name = "Skill Overlay info",
- desc = "The skill trackers need you to have an \u00A72api key\u00A77 set (if you dont have one set do \u00A72/api new\u00A77)\n" +
+ desc = "The skill trackers need you to have an \u00A72api key\u00A77 set (if you don't have one set do \u00A72/api new\u00A77)\n" +
"For the overlays to show you need a \u00A7bmathematical hoe\u00A77 or an axe with \u00A7bcultivating\u00A77 " +
"enchant for farming, a pickaxe with \u00A7bcompact\u00A77 for mining or a rod with \u00A7bexpertise\u00A77"
)
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java index 489cf6fb..7f59a683 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java @@ -355,7 +355,7 @@ public class GuiProfileViewer extends GuiScreen { Utils.drawStringCentered(EnumChatFormatting.RED + "" + EnumChatFormatting.BOLD + "You're a menace to society", Minecraft.getMinecraft().fontRendererObj, guiLeft + sizeX / 2f, guiTop + 181, true, 0); if (timeDiff > 1800000) { - Utils.drawStringCentered(EnumChatFormatting.RED + "" + EnumChatFormatting.BOLD + "You dont know whats gonna happen to you", Minecraft.getMinecraft().fontRendererObj, + Utils.drawStringCentered(EnumChatFormatting.RED + "" + EnumChatFormatting.BOLD + "You don't know what's gonna happen to you", Minecraft.getMinecraft().fontRendererObj, guiLeft + sizeX / 2f, guiTop + 191, true, 0); if (timeDiff > 3000000) { Utils.drawStringCentered(EnumChatFormatting.RED + "" + EnumChatFormatting.BOLD + "You really want this?", Minecraft.getMinecraft().fontRendererObj, |