aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java
index dc04fdef..d7eb6adb 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/ExtraPage.java
@@ -110,7 +110,7 @@ public class ExtraPage extends GuiProfileViewerPage {
float mouseY
) {
if (Constants.PARENTS == null || !Constants.PARENTS.has("ESSENCE_WITHER")) {
- Utils.showOutdatedRepoNotification();
+ Utils.showOutdatedRepoNotification("parents.json or missing ESSENCE_WITHER");
return;
}
@@ -129,7 +129,7 @@ public class ExtraPage extends GuiProfileViewerPage {
TreeMap<String, JsonObject> itemInformation = NotEnoughUpdates.INSTANCE.manager.getItemInformation();
if (!itemInformation.containsKey(essenceName)) {
- Utils.showOutdatedRepoNotification();
+ Utils.showOutdatedRepoNotification(essenceName);
return;
}
String displayName = itemInformation.get(essenceName).getAsJsonObject().get("displayname").getAsString();