diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-08-05 15:18:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-05 15:18:16 +0200 |
| commit | 286d07910e7df7dc5bd0d22f8df3f53361a010c8 (patch) | |
| tree | f3a3b1b0c6437c8b9c18dfa5354fa3428644d77b /src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java | |
| parent | 2c33629da66bcef0a9300a737f4493eadb5c1b41 (diff) | |
| download | notenoughupdates-286d07910e7df7dc5bd0d22f8df3f53361a010c8.tar.gz notenoughupdates-286d07910e7df7dc5bd0d22f8df3f53361a010c8.tar.bz2 notenoughupdates-286d07910e7df7dc5bd0d22f8df3f53361a010c8.zip | |
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 <nopotheemail@gmail.com>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |
