diff options
| author | Lulonaut <67191924+Lulonaut@users.noreply.github.com> | 2021-12-11 05:13:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 15:13:04 +1100 |
| commit | 9f8867018ef7232c1e17af54c9818ddcafa26759 (patch) | |
| tree | f97b7f1c3ebbaf8845b73c82f07b1e75a8c02b3b /src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | |
| parent | 9475677afdb86078f3c014b52ef1b0a414f3c5e5 (diff) | |
| download | notenoughupdates-9f8867018ef7232c1e17af54c9818ddcafa26759.tar.gz notenoughupdates-9f8867018ef7232c1e17af54c9818ddcafa26759.tar.bz2 notenoughupdates-9f8867018ef7232c1e17af54c9818ddcafa26759.zip | |
Store auctionable items locally to only show price warning if the item can actually have a price (#29)
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | 1 |
1 files changed, 1 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 29eaf38e..c1e1cd0d 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java @@ -127,6 +127,7 @@ public class NotEnoughUpdates { FairySouls.load(new File(neuDir, "collected_fairy_souls.json"), gson); PetInfoOverlay.loadConfig(new File(neuDir, "petCache.json")); SlotLocking.getInstance().loadConfig(new File(neuDir, "slotLocking.json")); + ItemPriceInformation.init(new File(neuDir, "auctionable_items.json"), gson); if (config == null) { config = new NEUConfig(); |
