diff options
| author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2023-05-31 13:04:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-31 13:04:41 +0200 |
| commit | f4a9e4011b09be043ec086abd365d0e8c443bbec (patch) | |
| tree | 763a8dc14d8b1e4a4af59f5f649a465a3c721c37 /src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | |
| parent | 3740ac08399d4c16802729511b5032e8f8ac6e14 (diff) | |
| download | notenoughupdates-f4a9e4011b09be043ec086abd365d0e8c443bbec.tar.gz notenoughupdates-f4a9e4011b09be043ec086abd365d0e8c443bbec.tar.bz2 notenoughupdates-f4a9e4011b09be043ec086abd365d0e8c443bbec.zip | |
Add NPC Sell price to tooltip (#702)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java index 794df0f4..c6a0c04f 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java @@ -54,6 +54,7 @@ import io.github.moulberry.notenoughupdates.profileviewer.ProfileViewer; import io.github.moulberry.notenoughupdates.recipes.RecipeGenerator; import io.github.moulberry.notenoughupdates.util.Utils; import io.github.moulberry.notenoughupdates.util.brigadier.BrigadierRoot; +import io.github.moulberry.notenoughupdates.util.hypixelapi.HypixelItemAPI; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.GuiScreen; @@ -301,6 +302,7 @@ public class NotEnoughUpdates { manager.loadItemInformation(); overlay = new NEUOverlay(manager); profileViewer = new ProfileViewer(manager); + HypixelItemAPI.INSTANCE.loadItemData(); for (KeyBinding kb : manager.keybinds) { ClientRegistry.registerKeyBinding(kb); |
