diff options
author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2023-01-22 18:58:46 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-22 08:58:46 +0100 |
commit | d9f3fa267bbb4ab679f9c4c043ca98c911bdd86b (patch) | |
tree | 265235e35f7d9b2fff5e8a178bd1675a9e186ba2 | |
parent | 239fdf3f8035ea0a6f4f805451be3b9070d5a952 (diff) | |
download | NotEnoughUpdates-d9f3fa267bbb4ab679f9c4c043ca98c911bdd86b.tar.gz NotEnoughUpdates-d9f3fa267bbb4ab679f9c4c043ca98c911bdd86b.tar.bz2 NotEnoughUpdates-d9f3fa267bbb4ab679f9c4c043ca98c911bdd86b.zip |
Fix [NEU] API is down not showing (#558)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java b/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java index 754e2dc3..8096c2d5 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/ItemPriceInformation.java @@ -208,7 +208,7 @@ public class ItemPriceInformation { } return added; - } else if (auctionItem) { + } else if (auctionItem && !auctionInfoErrored) { List<Integer> lines = NotEnoughUpdates.INSTANCE.config.tooltipTweaks.priceInfoAuc; boolean added = false; |