diff options
| author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2023-08-31 02:44:27 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-30 18:44:27 +0200 |
| commit | ae35ab03ca4dbf7a902106f15f6e537fa86c0480 (patch) | |
| tree | bda802c9fa69e134acc69b7859bf97582852b5ed /src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java | |
| parent | 6f25e8bf8f24bcbf5575888492e0a557e5d01deb (diff) | |
| download | notenoughupdates-ae35ab03ca4dbf7a902106f15f6e537fa86c0480.tar.gz notenoughupdates-ae35ab03ca4dbf7a902106f15f6e537fa86c0480.tar.bz2 notenoughupdates-ae35ab03ca4dbf7a902106f15f6e537fa86c0480.zip | |
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
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/BasicPage.java | 3 |
1 files changed, 3 insertions, 0 deletions
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) { |
