diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2022-06-28 14:46:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 14:46:52 +0200 |
commit | 39983fc847e2ee34aca9ccf14c833fbcb281fa2e (patch) | |
tree | a992943d31fb2b034fefd006b68c3f16fc108e0d /src | |
parent | b2f01ae65a64a4cbb8431c29609f9c4c05f1d3a5 (diff) | |
download | NotEnoughUpdates-39983fc847e2ee34aca9ccf14c833fbcb281fa2e.tar.gz NotEnoughUpdates-39983fc847e2ee34aca9ccf14c833fbcb281fa2e.tar.bz2 NotEnoughUpdates-39983fc847e2ee34aca9ccf14c833fbcb281fa2e.zip |
A few changes (#176)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java | 9 |
1 files changed, 0 insertions, 9 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 fef2868c..af56ec1f 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/GuiProfileViewer.java @@ -3481,8 +3481,6 @@ public class GuiProfileViewer extends GuiScreen { Utils.getElementAsFloat(Utils.getElement(profileInfo, "stats.items_fished_treasure"), 0); float items_fished_large_treasure = Utils.getElementAsFloat(Utils.getElement(profileInfo, "stats.items_fished_large_treasure"), 0); - float items_fished_trophy_fish = - Utils.getElementAsFloat(Utils.getElement(profileInfo, "stats.items_fished_trophy_fish"), 0); Utils.renderAlignedString( EnumChatFormatting.GREEN + "Ores Mined", @@ -3520,13 +3518,6 @@ public class GuiProfileViewer extends GuiScreen { guiTop + yStartTop + yOffset * 5, 76 ); - Utils.renderAlignedString( - EnumChatFormatting.GREEN + "Trophy Fish Fished", - EnumChatFormatting.WHITE.toString() + (int) items_fished_trophy_fish, - guiLeft + xStart + xOffset * 2, - guiTop + yStartTop + yOffset * 6, - 76 - ); if (topKills == null) { topKills = new TreeMap<>(); |