From ae35ab03ca4dbf7a902106f15f6e537fa86c0480 Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Thu, 31 Aug 2023 02:44:27 +1000 Subject: move taming, beastmaster, and minion overlay information to be gathered when running /pv (#785) * use pv to steal taming level and beast master for pet overlay * update profile data load event to when /pv is ran * make minion helper say to use /pv if data is null * make error message show * make it so you can still pv if error in event --- .../io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java index a1135205..7db8a21c 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java @@ -766,6 +766,9 @@ public class BasicPage extends GuiProfileViewerPage { if (NotEnoughUpdates.INSTANCE.config.profileViewer.displayWeight) { renderWeight(mouseX, mouseY, selectedProfile); } + + selectedProfile.updateTamingLevel(); + selectedProfile.updateBeastMasterMultiplier(); } private String getIcon(String gameModeType) { -- cgit