From 286d07910e7df7dc5bd0d22f8df3f53361a010c8 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Sat, 5 Aug 2023 15:18:16 +0200 Subject: Starting to remove api key mentions from NEU (#781) * Starting to remove api key mentions from NEU * remove api key error popup * ooops --------- Co-authored-by: nopo --- .../moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java') 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 4e3ef022..198abb54 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java @@ -431,7 +431,7 @@ public class GuiProfileViewer extends GuiScreen { Utils.drawStringCentered(str, guiLeft + sizeX / 2f, guiTop + 101, true, 0); //This is just here to inform the player what to do - //like typing /api new or telling them to go find a psychotherapist + //like telling them to go find a psychotherapist long timeDiff = System.currentTimeMillis() - startTime; if (timeDiff > 20000) { @@ -440,12 +440,12 @@ public class GuiProfileViewer extends GuiScreen { guiLeft + sizeX / 2f, guiTop + 111, true, 0 ); Utils.drawStringCentered( - EnumChatFormatting.YELLOW + "Try \"/api new\".", + EnumChatFormatting.YELLOW + "Might be hypixel's fault.", guiLeft + sizeX / 2f, guiTop + 121, true, 0 ); if (timeDiff > 60000) { Utils.drawStringCentered( - EnumChatFormatting.YELLOW + "Might be hypixel's fault.", + EnumChatFormatting.YELLOW + "Might be our fault :/.", guiLeft + sizeX / 2f, guiTop + 131, true, 0 ); if (timeDiff > 180000) { -- cgit